pub enum MmaFragment<N: Numeric> {
Lhs(Array<Vector<N, NL>>),
Rhs(Array<Vector<N, NR>>),
Acc(Array<Vector<N, NA>>),
}Variants§
Implementations§
Source§impl<N: Numeric> MmaFragment<N>
impl<N: Numeric> MmaFragment<N>
pub fn new_Lhs(_0: Array<Vector<N, NL>>) -> Self
pub fn __expand_new_Lhs( _: &mut Scope, _0: <Array<Vector<N, NL>> as CubeType>::ExpandType, ) -> MmaFragmentExpand<N>
pub fn new_Rhs(_0: Array<Vector<N, NR>>) -> Self
pub fn __expand_new_Rhs( _: &mut Scope, _0: <Array<Vector<N, NR>> as CubeType>::ExpandType, ) -> MmaFragmentExpand<N>
pub fn new_Acc(_0: Array<Vector<N, NA>>) -> Self
pub fn __expand_new_Acc( _: &mut Scope, _0: <Array<Vector<N, NA>> as CubeType>::ExpandType, ) -> MmaFragmentExpand<N>
Trait Implementations§
Source§impl<N: Numeric> CubeDebug for MmaFragment<N>
impl<N: Numeric> CubeDebug for MmaFragment<N>
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<N: Numeric> CubeType for MmaFragment<N>
impl<N: Numeric> CubeType for MmaFragment<N>
type ExpandType = MmaFragmentExpand<N>
Auto Trait Implementations§
impl<N> Freeze for MmaFragment<N>
impl<N> RefUnwindSafe for MmaFragment<N>where
N: RefUnwindSafe,
impl<N> Send for MmaFragment<N>
impl<N> Sync for MmaFragment<N>
impl<N> Unpin for MmaFragment<N>where
N: Unpin,
impl<N> UnsafeUnpin for MmaFragment<N>
impl<N> UnwindSafe for MmaFragment<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