| 58 | } |
| 59 | |
| 60 | void DeviceQueue::debug_enqueue_begin(DeviceKernel kernel, const int work_size) |
| 61 | { |
| 62 | if (LOG_IS_ON(LOG_LEVEL_TRACE)) { |
| 63 | LOG_TRACE << "GPU queue launch " << device_kernel_as_string(kernel) << ", work_size " |
| 64 | << work_size; |
| 65 | } |
| 66 | |
| 67 | last_kernels_enqueued_.set(kernel, true); |
| 68 | } |
| 69 | |
| 70 | void DeviceQueue::debug_enqueue_end() |
| 71 | { |
nothing calls this directly
no test coverage detected