pub enum BiasLoaderExpand<MP: MatmulPrecision> {
Some {
tensor_view: <BiasReader<MP::EO> as CubeType>::ExpandType,
stage: <Stage<MP::EA, ConvTilingLayout> as CubeType>::ExpandType,
},
None,
}
Variants§
Some
Fields
§
tensor_view: <BiasReader<MP::EO> as CubeType>::ExpandType
§
stage: <Stage<MP::EA, ConvTilingLayout> as CubeType>::ExpandType
None
Trait Implementations§
Source§impl<MP: MatmulPrecision> Clone for BiasLoaderExpand<MP>
impl<MP: MatmulPrecision> Clone for BiasLoaderExpand<MP>
Source§impl<MP: MatmulPrecision> CubeDebug for BiasLoaderExpand<MP>
impl<MP: MatmulPrecision> CubeDebug for BiasLoaderExpand<MP>
Source§fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
Set the debug name of this type’s expansion. Should do nothing for types that don’t appear
at runtime
Auto Trait Implementations§
impl<MP> Freeze for BiasLoaderExpand<MP>
impl<MP> !RefUnwindSafe for BiasLoaderExpand<MP>
impl<MP> !Send for BiasLoaderExpand<MP>
impl<MP> !Sync for BiasLoaderExpand<MP>
impl<MP> Unpin for BiasLoaderExpand<MP>
impl<MP> !UnwindSafe for BiasLoaderExpand<MP>
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