pub struct MatMulShape {
pub m: u32,
pub n: u32,
pub k: u32,
}Expand description
MatMul shape for tiling purposes (numeric dimensions).
Fields§
§m: u32Row dimension.
n: u32Column dimension.
k: u32Inner/reduction dimension.
Trait Implementations§
Source§impl Clone for MatMulShape
impl Clone for MatMulShape
Source§fn clone(&self) -> MatMulShape
fn clone(&self) -> MatMulShape
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 moreAuto Trait Implementations§
impl Freeze for MatMulShape
impl RefUnwindSafe for MatMulShape
impl Send for MatMulShape
impl Sync for MatMulShape
impl Unpin for MatMulShape
impl UnsafeUnpin for MatMulShape
impl UnwindSafe for MatMulShape
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