pub struct ConditionalGraphStats {
pub launches: u64,
pub terminal_synchronizations: u64,
pub host_iterations: u64,
pub host_allocations: u64,
pub device_status_writer_launches: u64,
pub host_status_injections: u64,
}Expand description
Execution counters for the device-controlled conditional-graph route.
Fields§
§launches: u64Successfully enqueued parent-graph launches.
terminal_synchronizations: u64Terminal event synchronizations performed by the host.
host_iterations: u64Host-side fixpoint iterations (required to remain zero).
host_allocations: u64Allocations performed after a graph launch (required to remain zero).
device_status_writer_launches: u64Device status-writer kernels included in launches.
host_status_injections: u64Terminal statuses written directly by the host (required to remain zero).
Trait Implementations§
Source§impl Clone for ConditionalGraphStats
impl Clone for ConditionalGraphStats
Source§fn clone(&self) -> ConditionalGraphStats
fn clone(&self) -> ConditionalGraphStats
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 ConditionalGraphStats
Source§impl Debug for ConditionalGraphStats
impl Debug for ConditionalGraphStats
Source§impl Default for ConditionalGraphStats
impl Default for ConditionalGraphStats
Source§fn default() -> ConditionalGraphStats
fn default() -> ConditionalGraphStats
Returns the “default value” for a type. Read more
impl Eq for ConditionalGraphStats
Source§impl PartialEq for ConditionalGraphStats
impl PartialEq for ConditionalGraphStats
Source§fn eq(&self, other: &ConditionalGraphStats) -> bool
fn eq(&self, other: &ConditionalGraphStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConditionalGraphStats
Auto Trait Implementations§
impl Freeze for ConditionalGraphStats
impl RefUnwindSafe for ConditionalGraphStats
impl Send for ConditionalGraphStats
impl Sync for ConditionalGraphStats
impl Unpin for ConditionalGraphStats
impl UnsafeUnpin for ConditionalGraphStats
impl UnwindSafe for ConditionalGraphStats
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