File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -1518,9 +1518,10 @@ class ur_queue_flags_v(IntEnum):
1518
1518
DISCARD_EVENTS = UR_BIT (4 ) ## Events will be discarded
1519
1519
PRIORITY_LOW = UR_BIT (5 ) ## Low priority queue
1520
1520
PRIORITY_HIGH = UR_BIT (6 ) ## High priority queue
1521
- SUBMISSION_BATCHED = UR_BIT (7 ) ## Enqueue and submit in a batch later, as determined by adaptor or
1522
- ## driver
1523
- SUBMISSION_IMMEDIATE = UR_BIT (8 ) ## Enqueue and submit immediately
1521
+ SUBMISSION_BATCHED = UR_BIT (7 ) ## Hint: enqueue and submit in a batch later. No change in queue
1522
+ ## semantics. Implementation chooses submission mode.
1523
+ SUBMISSION_IMMEDIATE = UR_BIT (8 ) ## Hint: enqueue and submit immediately. No change in queue semantics.
1524
+ ## Implementation chooses submission mode.
1524
1525
1525
1526
class ur_queue_flags_t (c_int ):
1526
1527
def __str__ (self ):
Original file line number Diff line number Diff line change @@ -4000,9 +4000,10 @@ typedef enum ur_queue_flag_t {
4000
4000
UR_QUEUE_FLAG_DISCARD_EVENTS = UR_BIT (4 ), ///< Events will be discarded
4001
4001
UR_QUEUE_FLAG_PRIORITY_LOW = UR_BIT (5 ), ///< Low priority queue
4002
4002
UR_QUEUE_FLAG_PRIORITY_HIGH = UR_BIT (6 ), ///< High priority queue
4003
- UR_QUEUE_FLAG_SUBMISSION_BATCHED = UR_BIT (7 ), ///< Enqueue and submit in a batch later, as determined by adaptor or
4004
- ///< driver
4005
- UR_QUEUE_FLAG_SUBMISSION_IMMEDIATE = UR_BIT (8 ), ///< Enqueue and submit immediately
4003
+ UR_QUEUE_FLAG_SUBMISSION_BATCHED = UR_BIT (7 ), ///< Hint: enqueue and submit in a batch later. No change in queue
4004
+ ///< semantics. Implementation chooses submission mode.
4005
+ UR_QUEUE_FLAG_SUBMISSION_IMMEDIATE = UR_BIT (8 ), ///< Hint: enqueue and submit immediately. No change in queue semantics.
4006
+ ///< Implementation chooses submission mode.
4006
4007
/// @cond
4007
4008
UR_QUEUE_FLAG_FORCE_UINT32 = 0x7fffffff
4008
4009
/// @endcond
You can’t perform that action at this time.
0 commit comments