Expand description
Slot layout helpers (per-slot offsets, ARG0 helpers).
Constantsยง
- CLAIMED
- A lane won the CAS; it now owns the slot.
- DONE
- The lane finished executing; the host may recycle the slot.
- EMPTY
- The slot is free; the host may publish into it.
- FAULT
- The slot hit a hardware or software fault constraint.
- PRIORITY_
CRITICAL - Priority: critical; kernel checks these slots first on each iteration.
- PRIORITY_
HIGH - Priority: high-priority foreground work.
- PRIORITY_
IDLE - Priority: idle maintenance work.
- PRIORITY_
LOW - Priority: low-priority background work.
- PRIORITY_
NORMAL - Priority: normal scheduling (default).
- PUBLISHED
- The host finished writing; the GPU may claim it.
- REQUEUE
- The slot is heavily contested and has been requeued.
- WAIT_IO
- The slot is waiting for an asynchronous IO continuation.
- YIELD
- The slot yielded execution back to the scheduler.