Skip to content

Commit e156095

Browse files
committed
Regenerate headers after comment changes.
1 parent d474328 commit e156095

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

include/ur.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,9 +1518,10 @@ class ur_queue_flags_v(IntEnum):
15181518
DISCARD_EVENTS = UR_BIT(4) ## Events will be discarded
15191519
PRIORITY_LOW = UR_BIT(5) ## Low priority queue
15201520
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.
15241525

15251526
class ur_queue_flags_t(c_int):
15261527
def __str__(self):

include/ur_api.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4000,9 +4000,10 @@ typedef enum ur_queue_flag_t {
40004000
UR_QUEUE_FLAG_DISCARD_EVENTS = UR_BIT(4), ///< Events will be discarded
40014001
UR_QUEUE_FLAG_PRIORITY_LOW = UR_BIT(5), ///< Low priority queue
40024002
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.
40064007
/// @cond
40074008
UR_QUEUE_FLAG_FORCE_UINT32 = 0x7fffffff
40084009
/// @endcond

0 commit comments

Comments
 (0)