pub struct MatmulLineSizes {
pub lhs: u8,
pub rhs: u8,
pub out: u8,
}Expand description
Line size used for each tensor in global memory accesses. Represents the number of elements processed per SIMD load/store.
Fields§
§lhs: u8§rhs: u8§out: u8Trait Implementations§
Source§impl Clone for MatmulLineSizes
impl Clone for MatmulLineSizes
Source§fn clone(&self) -> MatmulLineSizes
fn clone(&self) -> MatmulLineSizes
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 MatmulLineSizes
impl Debug for MatmulLineSizes
Source§impl PartialEq for MatmulLineSizes
impl PartialEq for MatmulLineSizes
impl Copy for MatmulLineSizes
impl Eq for MatmulLineSizes
impl StructuralPartialEq for MatmulLineSizes
Auto Trait Implementations§
impl Freeze for MatmulLineSizes
impl RefUnwindSafe for MatmulLineSizes
impl Send for MatmulLineSizes
impl Sync for MatmulLineSizes
impl Unpin for MatmulLineSizes
impl UnwindSafe for MatmulLineSizes
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.