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

Function clCreateCommandQueueWithProperties

src/core/CL/OpenCL.cpp:386–401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384}
385
386cl_command_queue clCreateCommandQueueWithProperties(cl_context context,
387 cl_device_id device,
388 const cl_queue_properties *properties,
389 cl_int *errcode_ret)
390{
391 arm_compute::CLSymbols::get().load_default();
392 auto func = arm_compute::CLSymbols::get().clCreateCommandQueueWithProperties_ptr;
393 if (func != nullptr)
394 {
395 return func(context, device, properties, errcode_ret);
396 }
397 else
398 {
399 return nullptr;
400 }
401}
402
403cl_context clCreateContext(const cl_context_properties *properties,
404 cl_uint num_devices,

Callers 4

TEST_CASEFunction · 0.85
CommandQueueMethod · 0.85
DeviceCommandQueueMethod · 0.85
makeDefaultMethod · 0.85

Calls 1

load_defaultMethod · 0.80

Tested by

no test coverage detected