pub struct ResidentGraphHandleLifecycleStats {
pub live_graphs: u64,
pub live_graph_execs: u64,
pub created_graphs: u64,
pub destroyed_graphs: u64,
pub created_graph_execs: u64,
pub destroyed_graph_execs: u64,
}Expand description
Lifetime counters for resident CUDA graph and executable handles.
Fields§
§live_graphs: u64Parent graph handles currently retained by a prepared or in-flight run.
live_graph_execs: u64Instantiated graph executable handles currently retained.
created_graphs: u64Parent graph handles successfully created.
destroyed_graphs: u64Parent graph handles destroyed.
created_graph_execs: u64Graph executable handles successfully instantiated.
destroyed_graph_execs: u64Graph executable handles destroyed.
Trait Implementations§
Source§impl Clone for ResidentGraphHandleLifecycleStats
impl Clone for ResidentGraphHandleLifecycleStats
Source§fn clone(&self) -> ResidentGraphHandleLifecycleStats
fn clone(&self) -> ResidentGraphHandleLifecycleStats
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 ResidentGraphHandleLifecycleStats
Source§impl Default for ResidentGraphHandleLifecycleStats
impl Default for ResidentGraphHandleLifecycleStats
Source§fn default() -> ResidentGraphHandleLifecycleStats
fn default() -> ResidentGraphHandleLifecycleStats
Returns the “default value” for a type. Read more
impl Eq for ResidentGraphHandleLifecycleStats
Source§impl PartialEq for ResidentGraphHandleLifecycleStats
impl PartialEq for ResidentGraphHandleLifecycleStats
Source§fn eq(&self, other: &ResidentGraphHandleLifecycleStats) -> bool
fn eq(&self, other: &ResidentGraphHandleLifecycleStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResidentGraphHandleLifecycleStats
Auto Trait Implementations§
impl Freeze for ResidentGraphHandleLifecycleStats
impl RefUnwindSafe for ResidentGraphHandleLifecycleStats
impl Send for ResidentGraphHandleLifecycleStats
impl Sync for ResidentGraphHandleLifecycleStats
impl Unpin for ResidentGraphHandleLifecycleStats
impl UnsafeUnpin for ResidentGraphHandleLifecycleStats
impl UnwindSafe for ResidentGraphHandleLifecycleStats
Blanket Implementations§
impl<T> Allocation for T
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more