pub struct ResidentRuntimeCounters {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 ResidentRuntimeCounters
impl Clone for ResidentRuntimeCounters
Source§fn clone(&self) -> ResidentRuntimeCounters
fn clone(&self) -> ResidentRuntimeCounters
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 moreimpl Copy for ResidentRuntimeCounters
Source§impl Debug for ResidentRuntimeCounters
impl Debug for ResidentRuntimeCounters
impl Eq for ResidentRuntimeCounters
Source§impl PartialEq for ResidentRuntimeCounters
impl PartialEq for ResidentRuntimeCounters
impl StructuralPartialEq for ResidentRuntimeCounters
Auto Trait Implementations§
impl Freeze for ResidentRuntimeCounters
impl RefUnwindSafe for ResidentRuntimeCounters
impl Send for ResidentRuntimeCounters
impl Sync for ResidentRuntimeCounters
impl Unpin for ResidentRuntimeCounters
impl UnsafeUnpin for ResidentRuntimeCounters
impl UnwindSafe for ResidentRuntimeCounters
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.