pub struct MegakernelRuntimeCounters {Show 13 fields
pub total_slots: u32,
pub queue_depth: u32,
pub gpu_idle_slots: u32,
pub gpu_idle_ppm: u32,
pub frontier_density_bps: u16,
pub occupancy_proxy_bps: u16,
pub drained_slots: u32,
pub unreclaimed_done_slots: u32,
pub tenant_fairness_total: u64,
pub tenant_fairness_skew: u32,
pub priority_fairness_total: u64,
pub requeue_slots: u32,
pub fault_slots: u32,
}Expand description
Aggregated runtime performance counters derived from one telemetry snapshot.
Fields§
§total_slots: u32Total ring slots represented by the snapshot.
queue_depth: u32Active queue depth: published/claimed/waiting/requeued/fault/unknown slots.
gpu_idle_slots: u32Empty ring slots, used as the host-visible idle-capacity signal.
gpu_idle_ppm: u32Idle slots in parts per million of the ring size.
frontier_density_bps: u16Active frontier density in basis points of the ring size.
occupancy_proxy_bps: u16Occupancy proxy in basis points: non-idle slots divided by total slots.
drained_slots: u32Total slots the GPU has drained according to the control buffer.
unreclaimed_done_slots: u32Done slots visible in the ring snapshot and pending reclaim.
tenant_fairness_total: u64Sum of tenant fairness counters.
tenant_fairness_skew: u32Max minus min non-zero tenant fairness counter.
priority_fairness_total: u64Sum of priority fairness counters.
requeue_slots: u32Requeued slots visible in the ring.
fault_slots: u32Faulted slots visible in the ring.
Trait Implementations§
Source§impl Clone for MegakernelRuntimeCounters
impl Clone for MegakernelRuntimeCounters
Source§fn clone(&self) -> MegakernelRuntimeCounters
fn clone(&self) -> MegakernelRuntimeCounters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MegakernelRuntimeCounters
impl Debug for MegakernelRuntimeCounters
Source§impl PartialEq for MegakernelRuntimeCounters
impl PartialEq for MegakernelRuntimeCounters
Source§fn eq(&self, other: &MegakernelRuntimeCounters) -> bool
fn eq(&self, other: &MegakernelRuntimeCounters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MegakernelRuntimeCounters
impl Eq for MegakernelRuntimeCounters
impl StructuralPartialEq for MegakernelRuntimeCounters
Auto Trait Implementations§
impl Freeze for MegakernelRuntimeCounters
impl RefUnwindSafe for MegakernelRuntimeCounters
impl Send for MegakernelRuntimeCounters
impl Sync for MegakernelRuntimeCounters
impl Unpin for MegakernelRuntimeCounters
impl UnsafeUnpin for MegakernelRuntimeCounters
impl UnwindSafe for MegakernelRuntimeCounters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.