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 1034206 commit a671d25Copy full SHA for a671d25
unified-runtime/source/adapters/offload/queue.hpp
@@ -22,8 +22,8 @@ struct ur_queue_handle_t_ : RefCounted {
22
ur_queue_handle_t_(ol_device_handle_t Device, ur_context_handle_t UrContext,
23
ur_queue_flags_t Flags)
24
: OffloadQueues((Flags & UR_QUEUE_FLAG_OUT_OF_ORDER_EXEC_MODE_ENABLE)
25
- ? 1
26
- : OOO_QUEUE_POOL_SIZE),
+ ? OOO_QUEUE_POOL_SIZE
+ : 1),
27
QueueOffset(0), Barrier(nullptr), OffloadDevice(Device),
28
UrContext(UrContext), Flags(Flags) {}
29
0 commit comments