pub enum MatrixMmaShape {
M16N8K16,
}Expand description
Matrix multiply-accumulate tile shape for descriptor-level MMA ops.
These are mathematical fragment shapes, not backend instruction names. Emitters map supported shapes to their native substrate and reject shapes they cannot lower.
Variants§
M16N8K16
16 rows × 8 columns × 16 reduction lanes.
Trait Implementations§
Source§impl Clone for MatrixMmaShape
impl Clone for MatrixMmaShape
Source§fn clone(&self) -> MatrixMmaShape
fn clone(&self) -> MatrixMmaShape
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 MatrixMmaShape
Source§impl Debug for MatrixMmaShape
impl Debug for MatrixMmaShape
Source§impl<'de> Deserialize<'de> for MatrixMmaShape
impl<'de> Deserialize<'de> for MatrixMmaShape
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MatrixMmaShape
Source§impl Hash for MatrixMmaShape
impl Hash for MatrixMmaShape
Source§impl PartialEq for MatrixMmaShape
impl PartialEq for MatrixMmaShape
Source§impl Serialize for MatrixMmaShape
impl Serialize for MatrixMmaShape
impl StructuralPartialEq for MatrixMmaShape
Auto Trait Implementations§
impl Freeze for MatrixMmaShape
impl RefUnwindSafe for MatrixMmaShape
impl Send for MatrixMmaShape
impl Sync for MatrixMmaShape
impl Unpin for MatrixMmaShape
impl UnsafeUnpin for MatrixMmaShape
impl UnwindSafe for MatrixMmaShape
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.