| 689 | } |
| 690 | |
| 691 | cl_int clReleaseCommandQueue(cl_command_queue command_queue) |
| 692 | { |
| 693 | arm_compute::CLSymbols::get().load_default(); |
| 694 | auto func = arm_compute::CLSymbols::get().clReleaseCommandQueue_ptr; |
| 695 | if (func != nullptr) |
| 696 | { |
| 697 | return func(command_queue); |
| 698 | } |
| 699 | else |
| 700 | { |
| 701 | return CL_OUT_OF_RESOURCES; |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | cl_program clCreateProgramWithBinary(cl_context context, |
| 706 | cl_uint num_devices, |
no test coverage detected