Skip to content

Commit 3e57d5c

Browse files
EwanCkbenzie
authored andcommitted
Remove unused function from v2 adapter (#17476)
`urCommandBufferEnqueueExp` was changed in intel/llvm#16984 to `urEnqueueCommandBufferExp` but added back accidentally to the v2 L0 adapter in intel/llvm#17297
1 parent 4008aac commit 3e57d5c

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

source/adapters/level_zero/v2/command_buffer.cpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -493,15 +493,4 @@ urCommandBufferGetInfoExp(ur_exp_command_buffer_handle_t hCommandBuffer,
493493
} catch (...) {
494494
return exceptionToResult(std::current_exception());
495495
}
496-
497-
ur_result_t urCommandBufferEnqueueExp(
498-
ur_exp_command_buffer_handle_t CommandBuffer, ur_queue_handle_t UrQueue,
499-
uint32_t NumEventsInWaitList, const ur_event_handle_t *EventWaitList,
500-
ur_event_handle_t *Event) try {
501-
return UrQueue->get().enqueueCommandBufferExp(
502-
CommandBuffer, NumEventsInWaitList, EventWaitList, Event);
503-
} catch (...) {
504-
return exceptionToResult(std::current_exception());
505-
}
506-
507496
} // namespace ur::level_zero

0 commit comments

Comments
 (0)