diff --git a/source/adapters/level_zero/queue.cpp b/source/adapters/level_zero/queue.cpp index a5e1066a23..0701ad4318 100644 --- a/source/adapters/level_zero/queue.cpp +++ b/source/adapters/level_zero/queue.cpp @@ -1416,10 +1416,6 @@ ur_queue_handle_t_::executeCommandList(ur_command_list_ptr_t CommandList, (ZeCommandQueue, 1, &ZeCommandList, CommandList->second.ZeFence)); if (ZeResult != ZE_RESULT_SUCCESS) { this->Healthy = false; - if (ZeResult == ZE_RESULT_ERROR_UNKNOWN) { - // Turn into a more informative end-user error. - return UR_RESULT_ERROR_UNKNOWN; - } // Reset Command List and erase the Fence forcing the user to resubmit // their commands. std::vector EventListToCleanup;