pub struct StepFlops {
pub ndiv: f64,
pub nms_lu: f64,
pub nms_ldl: f64,
}Expand description
Flop-counter deltas produced by a single elimination step.
Matches faer’s amd.rs:547-557 accounting so AmdStats can
accumulate consistent ndiv / nms_ldl / nms_lu totals.
Fields§
§ndiv: f64§nms_lu: f64§nms_ldl: f64Trait Implementations§
impl Copy for StepFlops
Auto Trait Implementations§
impl Freeze for StepFlops
impl RefUnwindSafe for StepFlops
impl Send for StepFlops
impl Sync for StepFlops
impl Unpin for StepFlops
impl UnsafeUnpin for StepFlops
impl UnwindSafe for StepFlops
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