Expand description
SIMD optimizations for preprocessing operations
This module provides SIMD-accelerated implementations of common preprocessing operations like element-wise arithmetic, statistical calculations, and data transformations that are frequently used in scaling, normalization, and other preprocessing tasks.
Modules§
- ndarray_
ops - High-level SIMD-accelerated operations for ndarray integration
Structs§
- Simd
Config - Configuration for SIMD optimizations
Functions§
- add_
scalar_ f64_ simd - SIMD-optimized element-wise addition of a scalar to a vector
- add_
vectors_ f64_ simd - SIMD-optimized vector addition
- div_
scalar_ f64_ simd - SIMD-optimized element-wise division of a vector by a scalar
- mean_
f64_ simd - SIMD-optimized mean calculation
- min_
max_ f64_ simd - SIMD-optimized min/max finding
- mul_
scalar_ f64_ simd - SIMD-optimized element-wise multiplication of a vector by a scalar
- sub_
scalar_ f64_ simd - SIMD-optimized element-wise subtraction of a scalar from a vector
- sub_
vectors_ f64_ simd - SIMD-optimized vector subtraction
- variance_
f64_ simd - SIMD-optimized variance calculation