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

Function clCreateCommandQueue

src/core/CL/OpenCL.cpp:369–384  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

367}
368
369cl_command_queue clCreateCommandQueue(cl_context context,
370 cl_device_id device,
371 cl_command_queue_properties properties,
372 cl_int *errcode_ret)
373{
374 arm_compute::CLSymbols::get().load_default();
375 auto func = arm_compute::CLSymbols::get().clCreateCommandQueue_ptr;
376 if (func != nullptr)
377 {
378 return func(context, device, properties, errcode_ret);
379 }
380 else
381 {
382 return nullptr;
383 }
384}
385
386cl_command_queue clCreateCommandQueueWithProperties(cl_context context,
387 cl_device_id device,

Callers 1

CommandQueueMethod · 0.85

Calls 1

load_defaultMethod · 0.80

Tested by

no test coverage detected