pub struct MatmulElems {
    pub lhs_global: StorageType,
    pub rhs_global: StorageType,
    pub acc_global: StorageType,
    pub lhs_stage: StorageType,
    pub rhs_stage: StorageType,
    pub acc_stage: StorageType,
    pub lhs_register: StorageType,
    pub rhs_register: StorageType,
    pub acc_register: StorageType,
}Fields§
§lhs_global: StorageType§rhs_global: StorageType§acc_global: StorageType§lhs_stage: StorageType§rhs_stage: StorageType§acc_stage: StorageType§lhs_register: StorageType§rhs_register: StorageType§acc_register: StorageTypeImplementations§
Source§impl MatmulElems
 
impl MatmulElems
pub fn new<MP: MatmulPrecision>() -> Self
Auto Trait Implementations§
impl Freeze for MatmulElems
impl RefUnwindSafe for MatmulElems
impl Send for MatmulElems
impl Sync for MatmulElems
impl Unpin for MatmulElems
impl UnwindSafe for MatmulElems
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