pub struct CompilationStats {
pub original_ops: usize,
pub optimized_ops: usize,
pub eliminated_ops: usize,
pub fused_ops: usize,
pub compilation_time_ms: f64,
}Expand description
Statistics from graph compilation.
Fields§
§original_ops: usizeNumber of operations in original graph
optimized_ops: usizeNumber of operations after optimization
eliminated_ops: usizeNumber of operations eliminated
fused_ops: usizeNumber of operations fused
compilation_time_ms: f64Compilation time in milliseconds
Trait Implementations§
Source§impl Clone for CompilationStats
impl Clone for CompilationStats
Source§fn clone(&self) -> CompilationStats
fn clone(&self) -> CompilationStats
Returns a duplicate of the value. Read more
1.0.0 · 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 CompilationStats
impl Debug for CompilationStats
Source§impl Default for CompilationStats
impl Default for CompilationStats
Source§fn default() -> CompilationStats
fn default() -> CompilationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CompilationStats
impl RefUnwindSafe for CompilationStats
impl Send for CompilationStats
impl Sync for CompilationStats
impl Unpin for CompilationStats
impl UnwindSafe for CompilationStats
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more