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

Function clFlush

src/core/CL/OpenCL.cpp:757–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

755}
756
757cl_int clFlush(cl_command_queue command_queue)
758{
759 arm_compute::CLSymbols::get().load_default();
760 auto func = arm_compute::CLSymbols::get().clFlush_ptr;
761 if (func != nullptr)
762 {
763 return func(command_queue);
764 }
765 else
766 {
767 return CL_OUT_OF_RESOURCES;
768 }
769}
770
771cl_int clFinish(cl_command_queue command_queue)
772{

Callers 1

flushMethod · 0.85

Calls 1

load_defaultMethod · 0.80

Tested by

no test coverage detected