rabitq 0.2.2

A Rust implementation of the RaBitQ vector search algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! RaBitQ implementation in Rust.

#![forbid(missing_docs)]
pub mod consts;
pub mod metrics;
pub mod ord32;
pub mod rabitq;
pub mod rerank;
pub mod simd;
pub mod utils;

pub use rabitq::RaBitQ;