hannoy 0.1.3

HNSW Approximate Nearest Neighbors in Rust, based on LMDB and optimized for memory usage
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod simple;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod simple_sse;

#[cfg(target_arch = "x86_64")]
mod simple_avx;

#[cfg(target_arch = "aarch64")]
mod simple_neon;