Skip to main content

quickselect_simd

Function quickselect_simd 

Source
pub fn quickselect_simd<F>(arr: &mut [F], k: usize) -> F
Expand description

SIMD-optimized quickselect algorithm for finding the k-th smallest element

This implementation uses SIMD operations for partitioning when beneficial.