pub enum NumericMode {
Kahan,
Binned,
FixedTree,
}Expand description
Floating-point reduction strategy. Maps to the existing accumulator family; every variant preserves determinism (none enables FMA or random ordering).
Variants§
Kahan
Compensated (Kahan) summation — the default scalar strategy.
Binned
Order-invariant binned accumulator — best for parallel reductions.
FixedTree
Fixed pairwise reduction tree — deterministic divide-and-conquer.
Implementations§
Trait Implementations§
Source§impl Clone for NumericMode
impl Clone for NumericMode
Source§fn clone(&self) -> NumericMode
fn clone(&self) -> NumericMode
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 moreSource§impl Debug for NumericMode
impl Debug for NumericMode
Source§impl PartialEq for NumericMode
impl PartialEq for NumericMode
Source§fn eq(&self, other: &NumericMode) -> bool
fn eq(&self, other: &NumericMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for NumericMode
impl Eq for NumericMode
impl StructuralPartialEq for NumericMode
Auto Trait Implementations§
impl Freeze for NumericMode
impl RefUnwindSafe for NumericMode
impl Send for NumericMode
impl Sync for NumericMode
impl Unpin for NumericMode
impl UnsafeUnpin for NumericMode
impl UnwindSafe for NumericMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more