| 96 | } |
| 97 | |
| 98 | cl_command_queue XCreateCommandQueueWithProperties(cl_context context, cl_device_id device, const cl_queue_properties *properties, cl_int *errcode_ret) |
| 99 | { |
| 100 | XDEBG("XCreateCommandQueueWithProperties(ctx: %p, dev: %p)", context, device); |
| 101 | return CreateCommandQueue([&]() { |
| 102 | return Driver::CreateCommandQueueWithProperties(context, device, properties, errcode_ret); |
| 103 | }); |
| 104 | } |
| 105 | |
| 106 | } // namespace xsched::opencl |
nothing calls this directly
no test coverage detected