kannolo 0.3.7

kANNolo is designed for easy prototyping of ANN Search algorithms while ensuring high effectiveness and efficiency over both dense and sparse vectors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod dot_product;
pub mod euclidean_distance;

pub mod simd {
    pub mod distances;
    pub mod transpose;
    pub mod utils;
}

pub use dot_product::*;
pub use euclidean_distance::*;