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: u8
Trait Implementations§
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