pub fn manhattan_distance_simd(a: &[f32], b: &[f32]) -> f32Expand description
SIMD-optimized Manhattan distance calculation
Automatically uses the best available SIMD implementation:
- x86_64: AVX-512 → AVX2 → auto-vectorization
- aarch64: NEON (always available)
- other: auto-vectorization