pub struct ManualMma<'a, D: Dialect> {
pub shape: MmaShape<D>,
pub frag_a: &'a [Variable<D>],
pub frag_b: &'a [Variable<D>],
pub frag_c: &'a [Variable<D>],
pub frag_d: &'a Variable<D>,
}Fields§
§shape: MmaShape<D>§frag_a: &'a [Variable<D>]§frag_b: &'a [Variable<D>]§frag_c: &'a [Variable<D>]§frag_d: &'a Variable<D>Implementations§
Trait Implementations§
impl<'a, D: Copy + Dialect> Copy for ManualMma<'a, D>
Auto Trait Implementations§
impl<'a, D> Freeze for ManualMma<'a, D>
impl<'a, D> RefUnwindSafe for ManualMma<'a, D>where
D: RefUnwindSafe,
impl<'a, D> Send for ManualMma<'a, D>
impl<'a, D> Sync for ManualMma<'a, D>
impl<'a, D> Unpin for ManualMma<'a, D>where
D: Unpin,
impl<'a, D> UnwindSafe for ManualMma<'a, D>where
D: UnwindSafe + RefUnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more