MCPcopy Create free account
hub / github.com/XpuOS/xsched / XCreateCommandQueue

Function XCreateCommandQueue

platforms/opencl/shim/src/cmdq.cpp:90–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90cl_command_queue XCreateCommandQueue(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int *errcode_ret)
91{
92 XDEBG("XCreateCommandQueue(ctx: %p, dev: %p, prop: 0x%lx)", context, device, properties);
93 return CreateCommandQueue([&]() {
94 return Driver::CreateCommandQueue(context, device, properties, errcode_ret);
95 });
96}
97
98cl_command_queue XCreateCommandQueueWithProperties(cl_context context, cl_device_id device, const cl_queue_properties *properties, cl_int *errcode_ret)
99{

Callers

nothing calls this directly

Calls 1

CreateCommandQueueFunction · 0.85

Tested by

no test coverage detected