pub struct FusionOpportunity {
pub producer_idx: usize,
pub consumer_idx: usize,
pub fusion_type: FusionType,
pub estimated_speedup: u32,
}Expand description
Fusion opportunity between two nodes
Fields§
§producer_idx: usize§consumer_idx: usize§fusion_type: FusionType§estimated_speedup: u32Trait Implementations§
Source§impl Clone for FusionOpportunity
impl Clone for FusionOpportunity
Source§fn clone(&self) -> FusionOpportunity
fn clone(&self) -> FusionOpportunity
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 FusionOpportunity
impl Debug for FusionOpportunity
Source§impl PartialEq for FusionOpportunity
impl PartialEq for FusionOpportunity
impl Eq for FusionOpportunity
impl StructuralPartialEq for FusionOpportunity
Auto Trait Implementations§
impl Freeze for FusionOpportunity
impl RefUnwindSafe for FusionOpportunity
impl Send for FusionOpportunity
impl Sync for FusionOpportunity
impl Unpin for FusionOpportunity
impl UnwindSafe for FusionOpportunity
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