pub struct KindDispatchSummary {
pub kind: OpKind,
pub node_count: usize,
pub path: DispatchPath,
pub logical_name: Option<&'static str>,
}Expand description
Per-OpKind summary for one graph + backend claim set.
Fields§
§kind: OpKind§node_count: usize§path: DispatchPath§logical_name: Option<&'static str>Set when DispatchPath::CommonIr (see registered_logical_kernels).
Trait Implementations§
Source§impl Clone for KindDispatchSummary
impl Clone for KindDispatchSummary
Source§fn clone(&self) -> KindDispatchSummary
fn clone(&self) -> KindDispatchSummary
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 moreAuto Trait Implementations§
impl Freeze for KindDispatchSummary
impl RefUnwindSafe for KindDispatchSummary
impl Send for KindDispatchSummary
impl Sync for KindDispatchSummary
impl Unpin for KindDispatchSummary
impl UnsafeUnpin for KindDispatchSummary
impl UnwindSafe for KindDispatchSummary
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