| 29 | } |
| 30 | |
| 31 | ze_result_t XCommandQueueDestroy(ze_command_queue_handle_t hCommandQueue) |
| 32 | { |
| 33 | XDEBG("XCommandQueueDestroy(cmdq: %p)", hCommandQueue); |
| 34 | XQueueManager::AutoDestroy(GetHwQueueHandle(hCommandQueue)); |
| 35 | return Driver::CommandQueueDestroy(hCommandQueue); |
| 36 | } |
| 37 | |
| 38 | ze_result_t XCommandQueueExecuteCommandLists(ze_command_queue_handle_t cmdq, uint32_t num, ze_command_list_handle_t *cmd_lists, ze_fence_handle_t fence) |
| 39 | { |
nothing calls this directly
no test coverage detected