03HOW YOU RUN IT CHEAPLY, PER TOKEN· SURGING

Serving & Runtime

How a model is actually run, per token — the mechanics that turn capability into throughput. In scope: batching and scheduling, KV-cache management and eviction, quantization at serving time, speculative decoding, prefill/decode disaggregation, paged attention, routing, throughput and latency engineering. Out: what the model can do (models), what a finished task costs (inference-economics), the silicon it runs on (hardware).

15SOURCES
6CONCEPTS
0ENTITIES
SOURCE MIX
12 P2 R1 A0 N
ACTIVITY · 20W
KV cacheBatchingSpec decodingPrefill/decode
PAPER
2026-07-06

DSpark: Confidence-Scheduled Speculative Decoding with Semi-Autoregressive Generation

Xin Cheng, Xingkai Yu, Chenze Shao, et al. (30+ authors incl. Wenfeng Liang, Damai Dai) · DeepSeek (author roster includes Wenfeng Liang, Damai Dai — DeepSeek's core research team)

First-party DeepSeek disclosure of a production speculative-decoding system combining parallel semi-autoregressive drafting with confidence-scheduled adaptive verification; claims 60-85% real-world deployment speedups. DeepSeek is already a KB-tracked and MenFem-studied entity (deepseek-v4-2026 source, entities/deepseek.md) — this is a first-party look at their inference-efficiency stack, directly bearing on the 'who captures inference margin' thesis the inference-economics topic tracks.

PAPER
2026-07-02

Spec-AUF: Accept-Until-Fail Training under Train-Inference Misalignment for Masked Block Drafters

Tianjian Yang, Meng Li · arXiv preprint

Single-mechanism fix for a known train/inference mismatch in block (DLM-style) speculative drafters: truncates the cross-entropy training support to the drafter's own first predicted failure point, concentrating supervision on the accepted prefix rather than the full block. No auxiliary objective, no verifier rollouts, no inference-pipeline change. Raises average emitted length τ from 2.40→2.61 on Qwen3-8B (DFlash) and transfers to a second drafter family (Domino, 2.56→2.68) — representative of the current 'free efficiency' phase of speculative-decoding research.

PAPER
2026-07-05

Quantize the Target, Quantize the Drafter: Efficient Inference with Qwen3.5-4B

Jaeyeon Kim, Jewon Lee, Bo-Kyeong Kim · Nota Inc. (Efficient Qwen Competition submission)

Combines quantization and speculative decoding in one system for constrained hardware (NVIDIA A10G): quantization-aware distillation for the target model + a two-stage-trained block-diffusion drafter, plus sliding-window attention. Achieves 6.978x average speedup over baseline while meeting quality thresholds (3rd place, Efficient Qwen Competition). Concrete evidence the two inference-efficiency techniques this lane tracks (quantization, speculative decoding) compound rather than substitute.

PAPER
2026-05-06

OSAQ: Outlier Self-Absorption for Accurate Low-bit LLM Quantization

Zhikai Li, Zhen Dong, Xuewen Liu, Jing Zhang, Qingyi Gu · arXiv preprint

Training-free, closed-form (no iterative optimization) post-training weight-only quantization: exploits a stable low-rank null space in the Hessian to build an additive weight transformation that suppresses outliers without affecting the task loss, absorbed into the weights offline with zero inference overhead. At 2-bit, OSAQ *integrated with* GPTQ achieves >40% lower perplexity than vanilla GPTQ (a complement to GPTQ, not a replacement).

PAPER
2026-05-17

VeriCache: Turning Lossy KV Cache into Lossless LLM Inference

Jiayi Yao, Samuel Shen, Kuntai Du, Shaoting Feng, Dongjoo Seo, Rui Zhang, Yuyang Huang, Yuhan Liu, Shan Lu, Junchen Jiang · Not stated verbatim on abstract page (roster overlaps LMCache / U. Chicago systems group)

Makes lossy KV-cache compression lossless by using compressed KV (GPU HBM) as a speculative drafter and verifying against full KV (CPU/remote) in parallel — drafting is HBM-bound, verification PCIe/network-bound, so the paths overlap. Up to ~2.7-4.3x throughput over full-KV with output identical to full-KV (KL<0.01 nats), ~25-40 accepted tokens/round vs 2-3 for small-model drafters; composes with EAGLE/MTP to 4.35x. Opens KV-cache coverage in the KB.

PAPER
2025-05-28

Speculative Decoding Meets Quantization: Compatibility Evaluation and Hierarchical Framework Design

Yudi Zhang, Weilin Zhao, Xu Han, Tiejun Zhao, Wang Xu, Hailong Cao, Conghui Zhu · not stated in abstract (code: github.com/AI9Stars/SpecMQuant)

Resolves the KB's flagged speculative-decoding × quantization CONFLICT with measurement: applying tree-style EAGLE-2 to a 4-bit weight-quantized model diminishes the quantization memory benefit because tree-draft verification costs significantly more than a single-token forward pass; a hierarchical framework using a small intermediate model to convert tree drafts into sequence drafts restores it — 2.78× speedup on 4-bit-weight Llama-3-70B (A100), +1.31× over EAGLE-2 on the same setup. Resolves the KB's highest-priority flagged tension (compound-vs-conflict) with measurement. Weight-quantization finding only.

PAPER
2026-05-08

Reformulating KV Cache Eviction Problem for Long-Context LLM Inference (LaProx)

Tho Mai, Joo-Young Kim · not stated in abstract

Recasts KV-cache eviction from head-wise attention-weight averaging into an output-aware, layer-wise matrix-multiplication approximation (LaProx), modeling the multiplicative interaction between attention maps and projected value states to yield the first GLOBALLY-comparable token importance score for model-wide (not per-head) selection; maintains model performance at just 5% KV-cache retention across 19 datasets (LongBench + Needle-In-A-Haystack) and cuts accuracy loss up to 2× vs prior SOTA under extreme compression, with minimal overhead. Broadens the KB's KV-cache lane from compression into eviction.

PAPER
2026-06-30

From Tensor Buffer to Distributed Memory Hierarchy: A Survey of KV Cache Management for LLM Serving

Jie Li, Tongyang Wang, Yong Chen · arXiv preprint

First systematic taxonomy of 30+ KV-cache-management systems across four design dimensions (locality, lifetime, ownership, substrate) and five architectural patterns (local-paged, disaggregated-pipeline, shared-store, memory-pool, hybrid-tier); identifies seven evaluation-methodology gaps tied to fault tolerance, tiered eviction, speculative decoding, and MoE serving. Best current map of how the serving-software layer answers the memory-wall problem this topic already tracks at the hardware layer.

PAPER
2026-05-07

TokenStack: A Heterogeneous HBM-PIM Architecture and Runtime for Efficient LLM Inference

Zhuoran Li, Zhuohang Bian, Zihao Huang, Guangyu Sun, Yun Liang, Youwei Zhuo · Peking University (per author affiliations)

Concrete HBM4-logic-die PIM architecture: separates memory stacks into capacity-focused vs. compute-enabled layers, using the HBM4 base die as a local controller; claims 1.62x geomean token throughput, 1.70x latency-sensitive serving capacity, 30-47% per-token energy reduction on production-derived workloads. Directly answers two open Knowledge Gaps already flagged in this topic's frontier.md ('Commercial PIM product specs' and 'C-HBM4E NMC workload adoption'). Published 2026-05-07 — just outside the strict 60-day discovery window but flagged given the direct gap match.

PAPER
2026-07-09

StreamDQ: Near-Memory Weight DeQuantization in Custom HBM for Scalable AI Inference Acceleration

Minki Jeong, Daegun Yoon, Soohong Ahn, Seungyong Lee, Nameun Kang, Hyeonseok Ju, Ieryung Park, Joonseop Sim, Youngpyo Joo, Hoshik Kim · SK Hynix (Icheon, South Korea)

SK Hynix engineers put dequantization logic on the HBM base die (DeQuantization Blocks) so quantized weights are unpacked memory-side during standard loads, eliminating GPU CUDA-core dequantization. Up to 7.08x GEMM speedup, 90.23% lower energy, per-DQB 0.127mm2/0.355W in 12nm, 54.68% end-to-end LLM latency reduction and 2.20x decode throughput. First primary memory-maker technical source in this KB (architecture side).

PAPER
2026-04-28

AMMA: A Multi-Chiplet Memory-Centric Architecture for Low-Latency 1M Context Attention Serving

Zhongkai Yu, Haotian Ye, Chenyang Zhou, Ohm Rishabh Venkatachalam, Zaifeng Pan, Zhengding Hu, Junsung Kim, Won Woo Ro, Po-An Tsai, Shuyi Pei, Yangwook Kang, Yufei Ding · UC San Diego, Columbia University, Yonsei University, NVIDIA, Samsung Semiconductor

Removes the GPU from the center of long-context attention serving: replaces GPU compute dies with 16 HBM-PNM cubes (4x4 UCIe 3.0 mesh) in a multi-chiplet package -- 44 TB/s aggregate bandwidth / 240W package (vs H100 3.35 TB/s / 700W), 15.5x lower attention latency and 6.9x lower energy vs H100 on 1M-token decode attention (also 1.1-2.5x vs Rubin, 1.4-3.4x vs NeuPIMs). DSE finding: per-cube compute saturates ~96 TFLOPS then bandwidth-bound; comms-reordering speedup scales 2.7x->65.4x from 8K->1M sequence length. Names NVIDIA Rubin's GPU-LPU platform as the GPU-centric baseline it argues against. Boundary case (Apr 2026, outside 7-day window) ingested for direct chiplet + memory-centric gap match.

PAPER
2026-07-20

C2KV: Compressed and Composable KV Cache Reuse for Efficient LLM Inference

Chuheng Du, Junyi Chen, Hanlin Tang, Kan Liu, Tao Lan, Lin Qu, Chaoyue Niu, Shengzhong Liu, Guihai Chen, Fan Wu · Shanghai Jiao Tong University (School of Computer Science), Alibaba Group

Software framework making the KV cache position-agnostic, compressible AND reusable at once via a lightweight sidecar Extractor learning a composable/compressed KV manifold, so non-prefix KV blocks concatenate and reuse without accuracy collapse. Compression ratio 4x primary (8x/16x also evaluated); up to 17x long-context inference speedup preserving quality; C2KV-4x accuracy beats even Full Recompute on MuSiQue (0.3587 vs 0.3198) and 2WikiMQA (0.4477 vs 0.4018); decode-time latency scaling flattened even at 128k tokens. Algorithm-layer complement to the near-memory KV hardware work.

REPORT
2026-05-25

Is a Compute Crunch Coming? (inference serving-capacity model, calibrated to SemiAnalysis InferenceX)

Luke Emberson, Jaime Sevilla · Epoch AI

First-principles prefill(compute-bound)/decode(bandwidth-bound) serving-throughput model CALIBRATED to 111 measured SemiAnalysis InferenceX Kimi K2.5 runs (fitted: compute eff 65%, bandwidth eff 30%, 5ms/step). GB200 NVL72 ~400k tok/s; global capacity 500M-20B tok/s; capacity growth ~3.4x/yr vs demand ~10x/yr => crunch. Denominated in tokens/sec, NO $/token. As-of 2026-05-25.

REPORT
2026-06-14

Prefill/Decode-Aware Evaluation of LLM Inference on Emerging AI Accelerators

Shun Usami, Venkatram Vishwanath, E. Wes Bethel · Argonne National Laboratory (per author affiliations); accepted HPAI4S'26 / IEEE IPDPS 2026

Empirical head-to-head of GPUs vs. GroqRack across the prefill (compute-bound) / decode (memory-bound) split using Llama2-7B: GPUs consistently win prefill, GroqRack wins decode TPOT at small batch, GPU decode advantage returns at large batch. Grounds 'which architecture wins which inference phase' in independent (Argonne) benchmarks rather than vendor claims — relevant to both this topic's rack-scale-compute frontier and inference-economics cost-per-phase modeling.

ANALYSIS
2026-07-08

Token Economics Across Traffic Profiles on Dedicated GPUs (measured H200 serving-cost benchmark)

Vinayak Baranwal · DigitalOcean

First MEASURED cost-per-token series in this KB: single H200 ($3.44/GPU-hr, Llama-3.3-70B FP8, vLLM 0.24.0), swept batch 1->256, yields $20.32 -> $0.45 per M output tokens (~44x spread on ONE SKU from traffic shape alone), independently reproducing Patil's utilization thesis with dollar-anchored levels. As-of 2026-07-08; MEASURED throughput, cost derived at list rate.

Serving & Runtime | Knowledge Base | MenFem