| 384 | } |
| 385 | |
| 386 | cl_command_queue clCreateCommandQueueWithProperties(cl_context context, |
| 387 | cl_device_id device, |
| 388 | const cl_queue_properties *properties, |
| 389 | cl_int *errcode_ret) |
| 390 | { |
| 391 | arm_compute::CLSymbols::get().load_default(); |
| 392 | auto func = arm_compute::CLSymbols::get().clCreateCommandQueueWithProperties_ptr; |
| 393 | if (func != nullptr) |
| 394 | { |
| 395 | return func(context, device, properties, errcode_ret); |
| 396 | } |
| 397 | else |
| 398 | { |
| 399 | return nullptr; |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | cl_context clCreateContext(const cl_context_properties *properties, |
| 404 | cl_uint num_devices, |
no test coverage detected