notes

♫ Note

SIMD ADC fast-scan & score-aware quantization (FAISS PQ4, ScaNN)

Why tracked (relevance to us)

These are the two things that could change our headline verdict:

  1. SIMD ADC could beat popcount on QPS. We concluded scalar PQ loses to VPOPCNTDQ (054, 011) and parked SIMD (050). PQ4/ScaNN's pshufb LUT is the proven way to make gather-based ADC fast. The safe-Rust route is core::simd::Simd::swizzle_dyn, which lowers to pshufb/tbl (nightly, no unsafe). The decisive untested experiment.
  2. Score-aware quantization is a better-codes objective than our rotation+residual (which minimize reconstruction, not ranking) — a recall-per-bit frontier we haven't tried.

Related