pub enum BiasGlobalReaderExpand<IP: MatrixPrecision> {
    Some {
        view: <View<Line<IP::Global>, Coords2d> as CubeType>::ExpandType,
        stage: <StridedStage<IP::Stage, BiasTilingLayout> as CubeType>::ExpandType,
    },
    None,
}Variants§
Implementations§
Source§impl<IP: MatrixPrecision> BiasGlobalReaderExpand<IP>
 
impl<IP: MatrixPrecision> BiasGlobalReaderExpand<IP>
pub fn __expand_load_stage_method<G: GlobalConfig>( self, scope: &mut Scope, config: G, ) -> <() as CubeType>::ExpandType
pub fn __expand_stage_method( self, scope: &mut Scope, ) -> <BiasStage<IP::Stage> as CubeType>::ExpandType
pub fn __expand_load_stage<G: GlobalConfig>( scope: &mut Scope, this: Self, config: G, ) -> <() as CubeType>::ExpandType
pub fn __expand_stage( scope: &mut Scope, this: Self, ) -> <BiasStage<IP::Stage> as CubeType>::ExpandType
Trait Implementations§
Source§impl<IP: MatrixPrecision> Clone for BiasGlobalReaderExpand<IP>
 
impl<IP: MatrixPrecision> Clone for BiasGlobalReaderExpand<IP>
Source§impl<IP: MatrixPrecision> CubeDebug for BiasGlobalReaderExpand<IP>
 
impl<IP: MatrixPrecision> CubeDebug for BiasGlobalReaderExpand<IP>
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
Source§impl<IP: MatrixPrecision> IntoMut for BiasGlobalReaderExpand<IP>
 
impl<IP: MatrixPrecision> IntoMut for BiasGlobalReaderExpand<IP>
Auto Trait Implementations§
impl<IP> Freeze for BiasGlobalReaderExpand<IP>
impl<IP> !RefUnwindSafe for BiasGlobalReaderExpand<IP>
impl<IP> !Send for BiasGlobalReaderExpand<IP>
impl<IP> !Sync for BiasGlobalReaderExpand<IP>
impl<IP> Unpin for BiasGlobalReaderExpand<IP>
impl<IP> !UnwindSafe for BiasGlobalReaderExpand<IP>
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