MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / clReleaseCommandQueue

Function clReleaseCommandQueue

src/core/CL/OpenCL.cpp:691–703  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689}
690
691cl_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
705cl_program clCreateProgramWithBinary(cl_context context,
706 cl_uint num_devices,

Callers 2

TEST_CASEFunction · 0.85
releaseMethod · 0.85

Calls 1

load_defaultMethod · 0.80

Tested by

no test coverage detected