turbosort 0.1.1

SIMD-accelerated radix sort for primitive types
Documentation
1
2
3
4
5
6
7
8
9
//! x86_64 SIMD backends (AVX2, SSE4.2).
//!
//! Runtime CPUID dispatch selects the best available instruction set.
//! Falls back to scalar if no SIMD is detected.

#[allow(dead_code)]
pub mod avx2;
#[allow(dead_code)]
pub mod partition;