pub struct CoopMatrixDim {
pub m: u32,
pub n: u32,
pub k: u32,
}Expand description
Tile dimensions for a cooperative-matrix GEMM: C[M×N] = A[M×K] × B[K×N].
Fields§
§m: u32Number of rows in A and C.
n: u32Number of columns in B and C.
k: u32Shared inner dimension (columns of A / rows of B).
Trait Implementations§
Source§impl Clone for CoopMatrixDim
impl Clone for CoopMatrixDim
Source§fn clone(&self) -> CoopMatrixDim
fn clone(&self) -> CoopMatrixDim
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CoopMatrixDim
Source§impl Debug for CoopMatrixDim
impl Debug for CoopMatrixDim
Source§impl Default for CoopMatrixDim
impl Default for CoopMatrixDim
impl Eq for CoopMatrixDim
Source§impl PartialEq for CoopMatrixDim
impl PartialEq for CoopMatrixDim
Source§fn eq(&self, other: &CoopMatrixDim) -> bool
fn eq(&self, other: &CoopMatrixDim) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoopMatrixDim
Auto Trait Implementations§
impl Freeze for CoopMatrixDim
impl RefUnwindSafe for CoopMatrixDim
impl Send for CoopMatrixDim
impl Sync for CoopMatrixDim
impl Unpin for CoopMatrixDim
impl UnsafeUnpin for CoopMatrixDim
impl UnwindSafe for CoopMatrixDim
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.