Researched 2026-07-29 (two 2-agent sweeps, agent-fetched primary sources); transcribed 2026-08-01. Corpus slug: reference-sota-perf-math-and-tier-numbers-2026-07-29. ⚠ These are research-grade citations, NOT locally reproduced — verify a number before it becomes load-bearing for a ship/revert decision; that is the ratchet rule.
| area | the numbers that decide the design |
| Postings / top-k | 8-bit impacts + 16-bit saturating accumulators reproduce float effectiveness (IOQP/JASSv2, SPLADEv2 RR@10 0.368); anytime termination cut VBMW p99 116.3ms→10.0ms at RBO 0.931; BM25-guided traversal took DeepImpact 219.9→4.8ms (46×). Reference envelope: tantivy ~6M docs 2-term AND 32–76µs ⇒ our warm 185–400ms is ~3 orders off the ceiling and the gap is ARCHITECTURE, not hardware. Stay doc-sorted (SaaT merges become rebuilds). |
| Compression / succinct | Partitioned Elias-Fano: 4.10 bits/int, AND 14–26% faster than OptPFD; uniform-128 costs +11% and avoids a 95-min construction. SIMD bitpacking is memory-bound-free (BitPacker4x 5.5 G ints/s; AVX2 8x not worth it). rank 6ns@3.1%, select1 10ns@15.6%; popcnt+BMI2 = 2–3×. Marginalia's purpose-built intersect beats Roaring 5–20× on exactly our co-citation shape — re-derive at our boundaries, don't import the general case. |
| Streaming compaction | The named fix for our compactor dying at ~1.9GB: remap table FIRST, loser tree over K bounded cursors ⇒ memory O(K·B) independent of data (K=64/4MiB ≈ 520MB fixed). DuckDB k-way 3.39×; 8-way loser tree 15×. AND keep the compactor OUT of the page cache (O_DIRECT/fadvise): fio holds ~900K reads/s while mmap drops to NEAR ZERO when the cache fills — the measured mechanism behind our own round-17 edge timeout. Size-tiered K≈8–10, growth ≈2 ⇒ write-amp 2–4 not 10–30. |
| Vector / ANN, integer serve | RaBitQ (SIGMOD24/25): 3-bit >95% recall, no reranking, no raw vectors; PQ at equal code length >50% relative error. Binary + int8 rescore = ~96% of float quality at 32× memory, 24.76× speedup — the rescore stage is load-bearing (76% recall plateau without). Skip DiskANN below ~100M vectors; linear Hamming does ~60M codes/s/core. |
| Graph math | BVGraph: 105.9M nodes / 3.74B arcs ≈ 560MB — the whole CC-domain graph RAM-resident on 36GB. Precompute top-k neighbors at INGEST (L2AP up to 1600×); never compute similarity at serve. HyperBall: 100M nodes ≈ 1.6GB counters; GVE-LPA 1.4B edges/s. |
| Ingest GPU (one 5080, 16GB) | Continuous batching ~19× single-stream; 50 output tokens cost 4.3× the time of 600 input tokens ⇒ emit short integer-enum JSON, the bigger win than any engine swap. Use a 137M–335M embedder at our scale. fp16 8B does not fit 16GB; Q4 near-lossless for code. Skip speculative decoding at batch saturation. |
| Edge / delivery | ECDSA P-256 signs 20,508/s/core vs RSA-2048's 1,009/s — a 20× handshake cap decided purely by certificate choice (CHECK OURS). kTLS/sendfile only >64KiB (worse at 1–8KiB). io_uring only above ~150 active connections/core. |
| Tier economics | DeepSeek V3.2 = cheapest proven coder (Aider 74.2% at $1.30/run vs GPT-5-high 88.0% at $29.08 — 22× cost for +14pts). Route-down break-even: at a 100–150× price ratio the cheap tier only loses when p≈0. RouteLLM: 85% cost cut at 95% quality with 14% escalated. Test-time compute + an oracle we already own: 15.9%@1 → 56%@250 samples; coverage is log-linear ⇒ k=2–3 retries captures most, k>3 is waste — our gate suites ARE the verifier. Frontier writes the spec+oracle ONCE, cheap tiers execute N×. Batch endpoints = flat 50% off. Distillation from our own traces: 50–90% inference-cost cut. Pitfalls: nested JSON collapses small models (68–69% non-compliance) ⇒ FLAT schemas; no oracle ⇒ retries buy nothing; never let a cheap tier touch promote/deploy. |
1 loser-tree bounded-memory compactor · 2 compactor bypasses page cache · 3 BMP forward block plane · 4 anytime block budget · 5 sorted-list + 64-bit bloom for the CC domain plane · 6 docid reordering at merge · 7 popcnt+BMI2 flags · 8 PEF docids · 9 size-tiered compaction · 10 batched tagging + integer-enum output · 11 RaBitQ planes · 12 BV adjacency + HyperBall · 13 ECDSA cert + per-core epoll · 14 kTLS for the WARC bank only · 15 MIH (deferred). DO NOT BUILD: BlockMax-WAND · DiskANN below ~100M · BK-trees · leveled LSM · general Roaring for the domain plane · AVX2 BitPacker8x · speculative decoding for batched tagging.