pub struct MmaProperties {
pub register_size_bits: usize,
pub const_plane_size: u32,
pub register_layout_a: MatrixLayout,
pub register_layout_b: MatrixLayout,
pub register_layout_acc: MatrixLayout,
pub register_duplication_a: usize,
pub register_duplication_b: usize,
pub register_duplication_acc: usize,
pub contiguous_elements: ContiguousElements,
}Fields§
§register_size_bits: usizeSize of registers in bits, used to calculate vector 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: usizeHow many copies of each piece of data exist for matrix A
register_duplication_b: usizeHow many copies of each piece of data exist for matrix B
register_duplication_acc: usizeHow many copies of each piece of data exist for matrix C/D
contiguous_elements: ContiguousElementsTrait 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 (const: unstable) · 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§fn default() -> MmaProperties
fn default() -> MmaProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MmaProperties
impl<'de> Deserialize<'de> for MmaProperties
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MmaProperties, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MmaProperties, <__D as Deserializer<'de>>::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§fn eq(&self, other: &MmaProperties) -> bool
fn eq(&self, other: &MmaProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MmaProperties
impl Serialize for MmaProperties
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 UnsafeUnpin 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<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
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.