pub enum MissReason {
MultiConsumer,
NonAddBiasConsumer,
BiasRankTooHigh {
rank: usize,
},
UnsupportedEpilogueActivation(Activation),
SharedMatmulCount {
count: usize,
},
SwigluGateBeforeUp,
SwigluNotSharedInput,
NotFused,
}Expand description
Why a recognizable fusion pattern was not collapsed.
Variants§
MultiConsumer
NonAddBiasConsumer
BiasRankTooHigh
UnsupportedEpilogueActivation(Activation)
SwigluGateBeforeUp
NotFused
Trait Implementations§
Source§impl Clone for MissReason
impl Clone for MissReason
Source§fn clone(&self) -> MissReason
fn clone(&self) -> MissReason
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 moreSource§impl Debug for MissReason
impl Debug for MissReason
Source§impl PartialEq for MissReason
impl PartialEq for MissReason
Source§fn eq(&self, other: &MissReason) -> bool
fn eq(&self, other: &MissReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MissReason
impl StructuralPartialEq for MissReason
Auto Trait Implementations§
impl Freeze for MissReason
impl RefUnwindSafe for MissReason
impl Send for MissReason
impl Sync for MissReason
impl Unpin for MissReason
impl UnsafeUnpin for MissReason
impl UnwindSafe for MissReason
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