Expand description
Array reduction operations with SIMD acceleration (argmin, argmax, etc.) Array reduction operations with SIMD acceleration
This module provides SIMD-accelerated reduction functions for finding indices of minimum and maximum elements in arrays. These are fundamental operations for optimization, statistics, and data analysis.
Functionsยง
- argmax_
k - Find indices of top-k maximum elements in a 1D array.
- argmax_
simd - Find the index of the maximum element in a 1D array with SIMD acceleration.
- argmin_
k - Find indices of top-k minimum elements in a 1D array.
- argmin_
simd - Find the index of the minimum element in a 1D array with SIMD acceleration.
- cumprod_
simd - Compute cumulative product of array elements with SIMD acceleration.
- cumsum_
simd - Compute cumulative sum of array elements with SIMD acceleration.
- max_
simd - Find the maximum value in a 1D array with SIMD acceleration.
- mean_
simd - Compute the arithmetic mean of a 1D array with SIMD acceleration.
- min_
simd - Find the minimum value in a 1D array with SIMD acceleration.
- std_
simd - Compute the standard deviation of a 1D array with SIMD acceleration.
- sum_
simd - Compute sum of a 1D array with SIMD acceleration.
- variance_
simd - Compute the variance of a 1D array with SIMD acceleration.