pub struct CostSummary {
pub total_flops: f64,
pub total_memory_bytes: f64,
pub total_communication_bytes: f64,
pub total_io_bytes: f64,
pub total_latency_ms: f64,
pub node_count: usize,
}Expand description
Summary of graph costs.
Fields§
§total_flops: f64Total computational cost (FLOPs)
total_memory_bytes: f64Total memory footprint (bytes)
total_communication_bytes: f64Total communication cost (bytes)
total_io_bytes: f64Total I/O cost (bytes)
total_latency_ms: f64Total estimated latency (milliseconds)
node_count: usizeNumber of nodes with cost annotations
Trait Implementations§
Source§impl Clone for CostSummary
impl Clone for CostSummary
Source§fn clone(&self) -> CostSummary
fn clone(&self) -> CostSummary
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 CostSummary
impl Debug for CostSummary
Source§impl PartialEq for CostSummary
impl PartialEq for CostSummary
impl StructuralPartialEq for CostSummary
Auto Trait Implementations§
impl Freeze for CostSummary
impl RefUnwindSafe for CostSummary
impl Send for CostSummary
impl Sync for CostSummary
impl Unpin for CostSummary
impl UnwindSafe for CostSummary
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