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

Function clFinish

src/core/CL/OpenCL.cpp:771–783  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

769}
770
771cl_int clFinish(cl_command_queue command_queue)
772{
773 arm_compute::CLSymbols::get().load_default();
774 auto func = arm_compute::CLSymbols::get().clFinish_ptr;
775 if (func != nullptr)
776 {
777 return func(command_queue);
778 }
779 else
780 {
781 return CL_OUT_OF_RESOURCES;
782 }
783}
784
785cl_int clGetProgramInfo(cl_program program,
786 cl_program_info param_name,

Callers 3

~ICLSVMMemoryRegionMethod · 0.85
mapMethod · 0.85
finishMethod · 0.85

Calls 1

load_defaultMethod · 0.80

Tested by

no test coverage detected