Skip to main content

nodedb_codec/vector_quant/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Vector quantization codec family — binary, ternary, 4-bit scalar, residual,
4//! and unified layout types shared across HNSW hot-path, IVF-PQ, and BBQ.
5
6pub mod bbq;
7pub mod codec;
8pub mod codec_envelope;
9pub mod hamming;
10pub mod layout;
11pub mod opq;
12pub mod opq_kmeans;
13pub mod opq_rotation;
14pub mod rabitq;
15pub mod ternary;