Sign InOpen Brain
AI EngineerVideoSource Linked

What's New in Inference Engineering — Philip Kiely, Baseten

Inference gains increasingly depend on training-aware techniques: weight quantization, KV-cache management, and speculative decoding can matter more than swapping serving code.

AI Engineer · Sep 19, 2026
Open Source Open MarkdownOpen JSON
Source Summary

The talk groups day-to-day inference optimization into **quantization, KV caching, and speculation**. TurboQuant compresses the KV cache to **4 bits**, while DFlash drafts **8 or 16 tokens** per window and showed more than a 3x improvement over Eagle in one B200/Qwen 38B test.

Practical Implication

Treat inference choices as workload-specific experiments. For agent systems, measure weight quantization, cache-aware routing, offloading, sharing, and speculative acceptance rates against your actual prompts rather than adopting a paper result by default.

Agent-Ready Context
The talk groups day-to-day inference optimization into **quantization, KV caching, and speculation**. TurboQuant compresses the KV cache to **4 bits**, while DFlash drafts **8 or 16 tokens** per window and showed more than a 3x improvement over Eagle in one B200/Qwen 38B test.

Treat inference choices as workload-specific experiments. For agent systems, measure weight quantization, cache-aware routing, offloading, sharing, and speculative acceptance rates against your actual prompts rather than adopting a paper result by default.

TurboQuant proved less applicable to data-center inference than its initial attention suggested. Continuous retraining of speculators may improve acceptance by **20% to 2x**, but it requires permission to reuse traffic, substantial storage and compute, and retraining whenever the target model changes.
Connected Context · Feed7 Judgment

This organizes inference tuning around quantization, KV-cache management, and speculation, but narrows each to measured workload fit. It confirms that cache capacity and reuse matter for agents while adding speculative acceptance and retraining economics as separate variables. The mixed applicability of TurboQuant and traffic-reuse requirements argue against treating headline paper gains as deployment defaults.

The Frontier AI Inference Cloud for Agents — Byung-Gon (Gon) Chun, FriendliAIFriendliAI shows how the KV-cache category becomes a system design problem through cache-local routing, distributed storage, and task-aware scheduling.Deep dive on LLM Inference at Scale — Harshul Jain, Audible & Tanmay Sah, Independent AI ResearcherThe capacity analysis supplies the premise for KV compression and offloading: long contexts and concurrency can exhaust cache memory before weights become limiting.TokTier: Exact Stateful Tokenization for Agentic LLM ServingTokTier adds tokenization as a distinct latency source, preventing optimization of caching and speculation from being mistaken for complete time-to-first-token coverage.Weight Folding, CUDA Streams, and the Bug That Made My Model Speak Backwards — Filip MakraduliThe CUDA stream race demonstrates the correctness consequence of low-level optimization, reinforcing the need to pair speed measurements with long-generation validation.
Context Map
infra#context-caching#agent-reliability
Uncertainty
TurboQuant proved less applicable to data-center inference than its initial attention suggested. Continuous retraining of speculators may improve acceptance by **20% to 2x**, but it requires permission to reuse traffic, substantial storage and compute, and retraining whenever the target model changes.