We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ab436 commit cd42b01Copy full SHA for cd42b01
source/adapters/level_zero/event.cpp
@@ -189,10 +189,10 @@ ur_result_t urEnqueueEventsWaitWithBarrierExt(
189
///< this particular command instance.
190
) {
191
bool InterruptBasedEventsEnabled =
192
- EnqueueExtProp
193
- ? (EnqueueExtProp->flags & UR_EXP_ENQUEUE_EXT_FLAG_LOW_POWER_EVENTS) ||
194
- Queue->InterruptBasedEventsEnabled
195
- : Queue->InterruptBasedEventsEnabled;
+ EnqueueExtProp ? (EnqueueExtProp->flags &
+ UR_EXP_ENQUEUE_EXT_FLAG_LOW_POWER_EVENTS) ||
+ Queue->InterruptBasedEventsEnabled
+ : Queue->InterruptBasedEventsEnabled;
196
// Lock automatically releases when this goes out of scope.
197
std::scoped_lock<ur_shared_mutex> lock(Queue->Mutex);
198
0 commit comments