| 367 | } |
| 368 | |
| 369 | cl_command_queue clCreateCommandQueue(cl_context context, |
| 370 | cl_device_id device, |
| 371 | cl_command_queue_properties properties, |
| 372 | cl_int *errcode_ret) |
| 373 | { |
| 374 | arm_compute::CLSymbols::get().load_default(); |
| 375 | auto func = arm_compute::CLSymbols::get().clCreateCommandQueue_ptr; |
| 376 | if (func != nullptr) |
| 377 | { |
| 378 | return func(context, device, properties, errcode_ret); |
| 379 | } |
| 380 | else |
| 381 | { |
| 382 | return nullptr; |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | cl_command_queue clCreateCommandQueueWithProperties(cl_context context, |
| 387 | cl_device_id device, |
no test coverage detected