1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pub mod metric; pub mod simple; pub mod tools; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] pub mod simple_sse; #[cfg(target_arch = "x86_64")] pub mod simple_avx; pub mod metric_f16; pub mod metric_uint; #[cfg(target_arch = "aarch64")] pub mod simple_neon;