pub fn dot_quant(query: &[f32], doc: &QuantizedVector) -> f32Expand description
Asymmetric dot product: full-precision query · quantized doc.
Computes Σ query[i] · code[i] · scale without ever reconstructing the doc
vector. For L2-normalized inputs this approximates cosine similarity; the
quantization error is well within embedding-ranking tolerance.