| 339 | } |
| 340 | |
| 341 | void clSVMFree(cl_context context, void *svm_pointer) |
| 342 | { |
| 343 | arm_compute::CLSymbols::get().load_default(); |
| 344 | auto func = arm_compute::CLSymbols::get().clSVMFree_ptr; |
| 345 | if (func != nullptr) |
| 346 | { |
| 347 | func(context, svm_pointer); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | cl_int clGetContextInfo(cl_context context, |
| 352 | cl_context_info param_name, |
no test coverage detected