pub struct SimdNumericOps;
Expand description
SIMD-optimized numeric operations for arrays
Implementations§
Source§impl SimdNumericOps
impl SimdNumericOps
Sourcepub fn fast_array_sum(arr: &Array) -> Option<f64>
pub fn fast_array_sum(arr: &Array) -> Option<f64>
Fast sum calculation for numeric arrays with SIMD vectorization hints
Sourcepub fn array_stats(arr: &Array) -> Option<ArrayStats>
pub fn array_stats(arr: &Array) -> Option<ArrayStats>
Calculate array statistics in a single pass
Auto Trait Implementations§
impl Freeze for SimdNumericOps
impl RefUnwindSafe for SimdNumericOps
impl Send for SimdNumericOps
impl Sync for SimdNumericOps
impl Unpin for SimdNumericOps
impl UnwindSafe for SimdNumericOps
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