pub struct StridedTileExpand<ES: Numeric, IO: SliceVisibility = ReadOnly> {
pub slice: <Slice<Line<ES>, IO> as CubeType>::ExpandType,
pub stride: <u32 as CubeType>::ExpandType,
pub layout: MatrixLayout,
}Fields§
§slice: <Slice<Line<ES>, IO> as CubeType>::ExpandType§stride: <u32 as CubeType>::ExpandType§layout: MatrixLayoutImplementations§
Source§impl<ES: Numeric, IO: SliceVisibility> StridedTileExpand<ES, IO>
impl<ES: Numeric, IO: SliceVisibility> StridedTileExpand<ES, IO>
pub fn __expand_as_unlined_method( self, scope: &mut Scope, ) -> <(Slice<ES, IO>, u32) as CubeType>::ExpandType
pub fn __expand_get_line_method( self, scope: &mut Scope, coor_strided: <u32 as CubeType>::ExpandType, coor_contiguous: <u32 as CubeType>::ExpandType, ) -> <Line<ES> as CubeType>::ExpandType
pub fn __expand_as_unlined( scope: &mut Scope, this: Self, ) -> <(Slice<ES, IO>, u32) as CubeType>::ExpandType
pub fn __expand_get_line( scope: &mut Scope, this: Self, coor_strided: <u32 as CubeType>::ExpandType, coor_contiguous: <u32 as CubeType>::ExpandType, ) -> <Line<ES> as CubeType>::ExpandType
Trait Implementations§
Source§impl<ES: Numeric, IO: SliceVisibility> Clone for StridedTileExpand<ES, IO>
impl<ES: Numeric, IO: SliceVisibility> Clone for StridedTileExpand<ES, IO>
Source§impl<ES: Numeric, IO: SliceVisibility> CubeDebug for StridedTileExpand<ES, IO>
impl<ES: Numeric, IO: SliceVisibility> CubeDebug for StridedTileExpand<ES, IO>
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<ES: Numeric, IO: SliceVisibility> IntoMut for StridedTileExpand<ES, IO>
impl<ES: Numeric, IO: SliceVisibility> IntoMut for StridedTileExpand<ES, IO>
Auto Trait Implementations§
impl<ES, IO> Freeze for StridedTileExpand<ES, IO>
impl<ES, IO> RefUnwindSafe for StridedTileExpand<ES, IO>where
IO: RefUnwindSafe,
ES: RefUnwindSafe,
impl<ES, IO = ReadOnly> !Send for StridedTileExpand<ES, IO>
impl<ES, IO = ReadOnly> !Sync for StridedTileExpand<ES, IO>
impl<ES, IO> Unpin for StridedTileExpand<ES, IO>
impl<ES, IO> UnwindSafe for StridedTileExpand<ES, IO>where
IO: UnwindSafe,
ES: UnwindSafe,
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