pub struct MmaProperties {
pub register_size_bits: u32,
pub const_plane_size: u32,
pub register_layout_a: MatrixLayout,
pub register_layout_b: MatrixLayout,
pub register_layout_acc: MatrixLayout,
pub register_duplication_a: u32,
pub register_duplication_b: u32,
pub register_duplication_acc: u32,
}Fields§
§register_size_bits: u32Size of registers in bits, used to calculate line size
const_plane_size: u32Constant size of planes, for calculating lane indices in a matrix
register_layout_a: MatrixLayoutLayout of registers in Matrix A
register_layout_b: MatrixLayoutLayout of registers in Matrix B
register_layout_acc: MatrixLayoutLayout of registers in Matrix C/D
register_duplication_a: u32How many copies of each piece of data exist for matrix A
register_duplication_b: u32How many copies of each piece of data exist for matrix B
register_duplication_acc: u32How many copies of each piece of data exist for matrix C/D
Trait Implementations§
Source§impl Clone for MmaProperties
impl Clone for MmaProperties
Source§fn clone(&self) -> MmaProperties
fn clone(&self) -> MmaProperties
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 Debug for MmaProperties
impl Debug for MmaProperties
Source§impl Default for MmaProperties
impl Default for MmaProperties
Source§impl<'de> Deserialize<'de> for MmaProperties
impl<'de> Deserialize<'de> for MmaProperties
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
Source§impl PartialEq for MmaProperties
impl PartialEq for MmaProperties
Source§impl Serialize for MmaProperties
impl Serialize for MmaProperties
Source§impl TypeHash for MmaProperties
impl TypeHash for MmaProperties
impl Eq for MmaProperties
impl StructuralPartialEq for MmaProperties
Auto Trait Implementations§
impl Freeze for MmaProperties
impl RefUnwindSafe for MmaProperties
impl Send for MmaProperties
impl Sync for MmaProperties
impl Unpin for MmaProperties
impl UnwindSafe for MmaProperties
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<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.