pub struct LayoutMatMulConfig<DA, DB>{
pub matmul_type: MatMulType,
pub lc: Layout<<LayoutMatMulConfig<DA, DB> as LayoutMatMulAPI<DA, DB>>::DC>,
pub la_rest: Option<Layout<Vec<usize>>>,
pub lb_rest: Option<Layout<Vec<usize>>>,
pub lc_rest: Option<Layout<Vec<usize>>>,
pub la_matmul: Layout<Vec<usize>>,
pub lb_matmul: Layout<Vec<usize>>,
pub lc_matmul: Layout<Vec<usize>>,
}
Fields§
§matmul_type: MatMulType
§lc: Layout<<LayoutMatMulConfig<DA, DB> as LayoutMatMulAPI<DA, DB>>::DC>
§la_rest: Option<Layout<Vec<usize>>>
§lb_rest: Option<Layout<Vec<usize>>>
§lc_rest: Option<Layout<Vec<usize>>>
§la_matmul: Layout<Vec<usize>>
§lb_matmul: Layout<Vec<usize>>
§lc_matmul: Layout<Vec<usize>>
Trait Implementations§
Source§impl<DA, DB> Clone for LayoutMatMulConfig<DA, DB>
impl<DA, DB> Clone for LayoutMatMulConfig<DA, DB>
Source§fn clone(&self) -> LayoutMatMulConfig<DA, DB>
fn clone(&self) -> LayoutMatMulConfig<DA, DB>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<DA, DB> Debug for LayoutMatMulConfig<DA, DB>
impl<DA, DB> Debug for LayoutMatMulConfig<DA, DB>
Auto Trait Implementations§
impl<DA, DB> !Freeze for LayoutMatMulConfig<DA, DB>
impl<DA, DB> !RefUnwindSafe for LayoutMatMulConfig<DA, DB>
impl<DA, DB> Send for LayoutMatMulConfig<DA, DB>where
LayoutMatMulConfig<DA, DB>: Sized,
impl<DA, DB> Sync for LayoutMatMulConfig<DA, DB>where
LayoutMatMulConfig<DA, DB>: Sized,
impl<DA, DB> !Unpin for LayoutMatMulConfig<DA, DB>
impl<DA, DB> !UnwindSafe for LayoutMatMulConfig<DA, DB>
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