Home / State of AI / Inference & Efficiency

Inference & Efficiency

Inference optimization, quantization, serving infrastructure, and hardware

Living document tracking inference optimization, quantization, serving infrastructure, and hardware. Newest entries appear at the top.

Key Areas to Watch

  • Quantization techniques (GPTQ, AWQ, GGUF)
  • Serving frameworks (vLLM, TGI, Ollama)
  • Hardware advances (GPUs, TPUs, custom silicon)
  • Edge and on-device inference
  • Cost optimization and throughput improvements

2026-W39

2026-W38

  • Simple Attention Sparsification — Gated sparse attention optimized by language-modeling loss targets long-context cost. [x.com]
  • BeaconKV — Training-free KV-cache compression for long reasoning traces and repeated context access. [x.com]
  • Uno — Diffusion head on autoregressive LLMs for parallel token generation and faster inference. [x.com]
  • Qwen3.8-27B quantized for vLLM/SGLang — Deployable 4-bit NVFP4/FP8 artifacts keep open multimodal models practical. [x.com]

2026-W37

  • Qwen 3.8 27B on Cerebras — High-throughput serving option for latency-sensitive agent sub-tasks. [HN]
  • Hugging Face WebGPU kernels — 200+ local/browser AI kernels expand practical WebGPU deployment paths. [Hugging Face]
  • Puro-2B — Small open recipe trained on consumer GPUs, relevant for narrow helper-model routing. [x.com]

2026-W36

2026-W32

2026-W28

  • WattGPU — Power and latency prediction for unseen GPU/LLM pairings supports deployment planning. [arXiv]
  • NVIDIA inference software stack — Token cost stayed a primary production-inference metric. [NVIDIA]
  • Hugging Face Kernels — Kernel distribution improvements keep open inference stacks moving. [Hugging Face]

2026-W27

2026-W24

2026-W23

2026-W22

  • Mistral 3 NVFP4 checkpoint — Mistral targets practical vLLM serving paths on Blackwell NVL72 and single-node 8xA100/8xH100 systems. [Mistral]
  • MagenticLite, MagenticBrain, Fara 1.5 — Small-model agent orchestration highlights efficiency as an agent-design constraint, not just an inference benchmark. [Microsoft Research]

2026-W19


2026-W18


2026-W17


2026-W16


2026-W15


2026-W14


2026-W13


2026-W12


2026-W11


2026-W10


2026-W09


2026-W08


2026-W07

  • Introducing GPT-5.3-Codex-Spark — OpenAI’s first real-time coding model: 15x faster generation than its predecessor with a 128k context window; 890 HN points. [OpenAI / HN]
  • Two different tricks for fast LLM inference — Sean Goedecke compares Anthropic’s fast mode (up to 2.5x token throughput) vs. GPT-5.3-Codex-Spark’s architectural speed gains; useful mental model for choosing inference strategy. [Sean Goedecke]

2026-W06


2026-W04

  • GLM-4.7-Flash is even faster now — llama.cpp PR landing inference speed improvements for GLM-4.7-Flash; 264 upvotes, notable for showing inference-speed gains reaching community models via upstream optimizations. [r/LocalLLaMA]

2026-W03


2026-W02


2026-W01


2025-W51


2025-W50


2025-W48


2025-W47


2025-W46


2025-W45


2025-W44


2025-W43


2025-W38


2025-W33


2025-W32


2025-W31


2025-W30


2025-W28


2025-W26


2025-W25


2025-W24


2025-W23


2025-W20


2025-W18


2025-W17


2025-W16


2025-W14


2025-W13


2025-W12

  • NVIDIA Dynamo — Datacenter-scale distributed inference: disaggregated prefill/decode, dynamic GPU scheduling, up to 30x throughput on Blackwell. [NVIDIA]
  • llama.cpp in pure Rust — Rust alternative achieving similar speeds with memory safety. [Reddit]

2025-W11


2025-W10


Baseline (through 2025-Q1)

Serving Frameworks

  • vLLM — Dominant open-source LLM serving engine. PagedAttention for efficient KV-cache management. Supports continuous batching, tensor parallelism, and most model architectures. Used in production by many companies.
  • Ollama — Local LLM runner that simplified running models on consumer hardware. One-command model downloads and inference. Huge adoption for local AI development. Supports GGUF format.
  • llama.cpp — Georgi Gerganov’s C/C++ inference engine. Runs LLMs on CPUs and consumer GPUs. The backbone of local inference. GGUF format became the standard for quantized models.
  • SGLang — Fast serving framework with RadixAttention for efficient prefix caching. Strong performance on multi-turn and agentic workloads.
  • TGI (Hugging Face) — Text Generation Inference server. Production-ready serving with Flash Attention, continuous batching, and Hugging Face model hub integration.

Quantization

  • GGUF — Became the standard quantization format for local inference (via llama.cpp). Supports various bit-widths (Q2–Q8). Community regularly quantizes new models within hours of release.
  • AWQ (Activation-aware Weight Quantization) — 4-bit quantization with minimal quality loss. Widely adopted for GPU serving.
  • GPTQ — Early post-training quantization method. 4-bit with good quality. Still widely used.
  • FP8 training — DeepSeek-V3 demonstrated FP8 training at scale, reducing memory and compute requirements. NVIDIA H100 native FP8 support made this practical.
  • 1-bit LLMs (BitNet) — Microsoft Research’s BitNet b1.58 showed ternary weight models ({-1, 0, 1}) can match full-precision on some tasks. Potential for massive efficiency gains if hardware adapts.

Hardware

  • NVIDIA H100/H200 — Dominated AI training and inference. H200 added HBM3e for larger memory bandwidth. Supply constraints eased through 2024 but still tight.
  • NVIDIA B200/GB200 (announced Mar 2024, shipping 2025) — Blackwell architecture. 2x training performance over H100. NVLink 5.0. GB200 “superchip” pairs two B200s with a Grace CPU.
  • Google TPU v5p/Trillium — Google’s latest TPUs for training and serving Gemini models. Available via GCP.
  • Groq LPU — Inference-specific chip (Language Processing Unit). Achieved ~500 tokens/sec on Llama 3 70B. Fastest inference for latency-sensitive applications. Limited model support.
  • Cerebras — Wafer-scale inference. Demonstrated fast inference speeds. Less flexible than GPU solutions.
  • Apple Silicon — M-series chips became viable for local inference. MLX framework from Apple optimized for Apple Silicon. Community ran 70B+ models on Mac Studios.

Inference Optimization Techniques

  • Speculative decoding — Use a small draft model to generate candidate tokens, verified in parallel by the large model. 2-3x speedup with no quality loss. Adopted by most serving frameworks.
  • KV-cache optimization — PagedAttention (vLLM), prefix caching, and multi-query/grouped-query attention reduced memory usage for long contexts.
  • Mixture of Experts (MoE) — DeepSeek-V3 (671B total, 37B active) and Mixtral showed MoE dramatically reduces inference compute. Only a fraction of parameters are active per token.
  • Prompt caching — Anthropic (Oct 2024) and OpenAI introduced API-level prompt caching, reducing cost and latency for repeated prefixes by up to 90%.
  • API pricing dropped ~10x through 2024-2025. GPT-4-class capabilities went from ~$30/M input tokens (GPT-4, early 2024) to ~$2.50/M (GPT-4o-mini, Claude 3.5 Haiku).
  • Open model hosting costs also fell. Running a 70B model went from requiring 4×A100s to 1-2× consumer GPUs with quantization.