pub struct GemmStats {
pub mma_count: u64,
pub flops: u64,
pub precision: MmaPrecision,
}Expand description
Statistics from a GEMM operation.
Fields§
§mma_count: u64Number of MMA (tile) operations performed.
flops: u64Total floating-point operations.
precision: MmaPrecisionPrecision mode used.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GemmStats
impl RefUnwindSafe for GemmStats
impl Send for GemmStats
impl Sync for GemmStats
impl Unpin for GemmStats
impl UnsafeUnpin for GemmStats
impl UnwindSafe for GemmStats
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