pub struct MmaTile<N: Numeric> {
pub fragment: MmaFragment<N>,
pub matrix_layout: MatrixLayout,
pub config: MmaMatmul,
}Expand description
Single MMA tile carrier. The role (Lhs / Rhs / Acc) lives inside
MmaFragment because each role’s fragment uses a different inner vector
size (NL / NR / NA); the outer carrier holds the shared comptime
metadata.
Fields§
§fragment: MmaFragment<N>§matrix_layout: MatrixLayout§config: MmaMatmulTrait Implementations§
Source§impl<N: Numeric> CubeType for MmaTile<N>
impl<N: Numeric> CubeType for MmaTile<N>
type ExpandType = MmaTileExpand<N>
Auto Trait Implementations§
impl<N> Freeze for MmaTile<N>
impl<N> RefUnwindSafe for MmaTile<N>where
N: RefUnwindSafe,
impl<N> Send for MmaTile<N>
impl<N> Sync for MmaTile<N>
impl<N> Unpin for MmaTile<N>where
N: Unpin,
impl<N> UnsafeUnpin for MmaTile<N>
impl<N> UnwindSafe for MmaTile<N>where
N: 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