Pick the serving changes TensorRT-LLM 0.18 (early 2026) actually shipped
TRT-LLM 0.18 added FP4 kernels for Blackwell, chunked prefill in the executor (vLLM parity), and tighter Medusa/EAGLE speculative-decoding integration.
Think of TensorRT-LLM as a high-performance race car. The 0.18 update did three things: it added a new fuel grade that only the latest engines can burn (FP4 on Blackwell), it learned to weave through traffic more smoothly so one slow car cannot block the whole highway (chunked prefill interleaving with decode), and it bolted on better autopilot helpers that anticipate the next few moves (tighter speculative decoding). The wrong options would have been like swapping the engine for a different brand, repainting it for a different racing league, or ripping out the most important feature it had. Real release notes are incremental: you add new fuel grades and smarter logic, you do not throw out the chassis.
Detailed answer & concept explanation~7 min readEverything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
4 min: FP4 kernels for Blackwell + chunked prefill executor (vLLM-parity) + Medusa/EAGLE speculative-decoding integration + why each distractor describes a pivot NVIDIA would not ship in 0.18.
Real products, models, and research that use this idea.
- TensorRT-LLM 0.18 shipped FP4 kernels for Blackwell B200/B300, doubling matmul throughput over FP8 with NVFP4 per-block scale calibration.
- The new executor mode in 0.18 mirrors vLLM v1's chunked-prefill design, fixing the head-of-line blocking problem long prefills caused in prior releases.
- Medusa and EAGLE speculative-decoding integration in 0.18 means production deployments can enable spec decoding via config rather than custom plugins.
- In-flight batching remains the production default in TRT-LLM, the same continuous batching pattern vLLM and SGLang use as their core scheduler.
- SGLang and vLLM ship multi-vendor backends (AMD MI300, Intel Gaudi); TRT-LLM stays NVIDIA-only by design as part of NVIDIA's serving stack.
What an interviewer would ask next. Try answering before peeking at the approach.
QWhat is NVFP4 and how does it differ from vanilla FP4?
QHow does TRT-LLM's chunked prefill compare to vLLM v1's implementation?
Don't say thisRed flags and common mistakes that signal junior thinking. Click to expand.
Red flags and common mistakes that signal junior thinking. Click to expand.
Picking distractors that propose dramatic discontinuities (Rust rewrite, multi-vendor backends, dropping in-flight batching). Real engine releases ship incremental wins along industry currents, not strategic pivots.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.
Same topic, related formats. Practice these next.