Skip to content

Commit f36f787

Browse files
authored
[UR][L0] Fix assignment of the in order flag for sync immediate list (#17199)
Signed-off-by: Neil R. Spruit <[email protected]>
1 parent 106668a commit f36f787

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unified-runtime/source/adapters/level_zero/context.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ ur_result_t ur_context_handle_t_::initialize() {
333333
Device->useDriverCounterBasedEvents()) {
334334
logger::debug(
335335
"L0 Synchronous Immediate Command List needed with In Order property.");
336-
ZeCommandQueueDesc.flags |= ZE_COMMAND_LIST_FLAG_IN_ORDER;
336+
ZeCommandQueueDesc.flags |= ZE_COMMAND_QUEUE_FLAG_IN_ORDER;
337337
}
338338
ZE2UR_CALL(
339339
zeCommandListCreateImmediate,

0 commit comments

Comments
 (0)