pub struct MatmulSize {
pub m: u32,
pub n: u32,
pub k: u32,
}
Fields§
§m: u32
§n: u32
§k: u32
Trait Implementations§
Source§impl Clone for MatmulSize
impl Clone for MatmulSize
Source§fn clone(&self) -> MatmulSize
fn clone(&self) -> MatmulSize
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 CubeType for MatmulSize
impl CubeType for MatmulSize
type ExpandType = MatmulSizeExpand
Source§fn init(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType
fn init(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType
Wrapper around the init method, necessary to type inference.
Source§impl Debug for MatmulSize
impl Debug for MatmulSize
Source§impl Hash for MatmulSize
impl Hash for MatmulSize
Source§impl PartialEq for MatmulSize
impl PartialEq for MatmulSize
impl Copy for MatmulSize
impl Eq for MatmulSize
impl StructuralPartialEq for MatmulSize
Auto Trait Implementations§
impl Freeze for MatmulSize
impl RefUnwindSafe for MatmulSize
impl Send for MatmulSize
impl Sync for MatmulSize
impl Unpin for MatmulSize
impl UnwindSafe for MatmulSize
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