kiddo 5.0.3

A high-performance, flexible, ergonomic k-d tree library. Ideal for geo- and astro- nearest-neighbour and k-nearest-neighbor queries
Documentation
pub(crate) mod fallback;
pub mod leaf_slice;

// TODO: fix f32 AVX2

// #[cfg(all(
//     feature = "simd",
//     target_feature = "avx2",
//     any(target_arch = "x86", target_arch = "x86_64")
// ))]
// pub(crate) mod f32_avx2;

// TODO: fix f64 AVX2

// #[cfg(all(
//     feature = "simd",
//     target_feature = "avx2",
//     any(target_arch = "x86", target_arch = "x86_64")
// ))]
// pub(crate) mod f64_avx2;

// TODO: fix f32 AVX512

// #[cfg(all(
//     feature = "simd",
//     target_feature = "avx512f",
//     any(target_arch = "x86", target_arch = "x86_64")
// ))]
// pub(crate) mod f32_avx512;

// TODO: fix f64 AVX512
// #[cfg(all(
//     feature = "simd",
//     target_feature = "avx512f",
//     any(target_arch = "x86", target_arch = "x86_64")
// ))]
// pub(crate) mod f64_avx512;