This article breaks down exactly which optimizations NVIDIA deployed, what the DeepSeek V4 model family looks like under the hood, which inference providers are already using these improvements, and how NVIDIA frames the economic logic behind its laser focus on cost-per-token.
NVIDIA organizes its inference optimization stack into three layers: production operations, application acceleration, and infrastructure access . Across these layers, the specific techniques that delivered the 5x improvement include:
Dynamo is an open-source distributed serving framework that disaggregates inference phases across different GPUs. It separates prefill from decode, intelligently routes requests to the right GPU to avoid redundant computation, and extends GPU memory via NVLink-based caching to cost-effective storage tiers . Dynamo supports SGLang, TensorRT-LLM, and vLLM, and integrates natively with these open-source engines
. The framework can boost the number of requests served by up to 7x on NVIDIA Blackwell, as demonstrated in the SemiAnalysis InferenceX benchmark
.
NVIDIA achieved a 5x reduction in cost-per-token through TensorRT-LLM optimization alone within two months of Blackwell launch, with no hardware change . At datacenter scale, a 5x reduction in cost-per-token represents a fivefold improvement in the revenue-generating capacity of the same infrastructure investment
.
By separating the prefill (input processing) and decode (token generation) phases across different GPUs, disaggregated serving eliminates resource contention and allows each phase to be optimized independently for its specific needs . This is a core feature of the NVIDIA Dynamo framework
.
DeepSeek V4 uses a Mixture-of-Experts (MoE) architecture with 384 distributed experts . Optimized routing dispatches tokens across these experts with reduced redundant computation, improving efficiency across the GPU cluster
.
NVIDIA's high-speed GPU interconnect enables efficient all-to-all communication across experts, which is critical for MoE models where expert parallelism requires frequent data exchanges between GPUs .
Using 4-bit floating-point precision for inference reduces memory bandwidth and compute requirements without significant accuracy loss . For DeepSeek-V3.2, NVIDIA's NVFP4 quantization reduced the memory footprint by 1.7x compared to the original FP8 format (415 GB vs. 690 GB), leading to significant boosts in throughput and cost efficiency
.
MTP generates multiple tokens per forward pass, increasing throughput. The first MTP support for DeepSeek V4 came on Day 3 from SGLang . Using MTP, SGLang later exceeded 12K tokens/second per GPU on GB300 NVL72 hardware
.
Not all optimizations came from NVIDIA alone. SemiAnalysis had to fix NVIDIA's open-source mHC (manifold-constrained hyper-connection) kernel launch code for DeepSeek V4's novel architecture, because TensorRT-LLM initially did not work well with the model . This community contribution was essential for production-quality inference.
LMSYS Org achieved a verified 5x throughput increase on NVIDIA GB300 NVL72 hardware using SGLang, jumping from approximately 2,200 to 11,200 tokens per second per GPU at roughly 50 tokens per second per user . NVIDIA's Dynamo support matrix specifically lists
lmsysorg/sglang:deepseek-v4-blackwell as a supported configuration .
The hybrid attention architecture combines Compressed Sparse Attention (CSA) and Heavily Compressed Attention (HCA), achieving just 27% of the single-token inference FLOPs of DeepSeek-V3.2 at 1M-token context . This efficiency is what makes million-token agentic context tracts computationally viable.
Several providers and inference engines have deployed NVIDIA's software optimizations for DeepSeek V4 on Blackwell:
lmsysorg/sglang:deepseek-v4-blackwell as a supported configuration Providers like Together AI and Baseten reduced cost-per-token by up to 90% compared with Hopper after adopting Blackwell, according to NVIDIA .
NVIDIA positions cost-per-token as the single most important metric for inference total cost of ownership (TCO) — explicitly rejecting older metrics like cost-per-GPU-hour or FLOPS-per-dollar . Jensen Huang declared that "NVIDIA's cost per token is the lowest in the world" in April 2026, framing it as "a direct result of architecture excellence and extreme co-design"
.
The reasoning behind this metric shift is directly tied to agentic AI:
As AI shifts from one-shot answers to multi-step reasoning — planning, retrieving context, invoking tools, reflecting, and self-correcting — the number of tokens generated per query can multiply by 100x to 1,000x . A single multi-step agent task can cost $0.10 to $1.00 in inference compute
. Gartner's March 2026 analysis confirmed that agentic AI models require 5–30x more tokens per task than standard chatbots
.
Industry estimates suggest 55–80% of enterprise AI GPU spend goes to inference, not training . Deloitte estimates that inference accounts for approximately two-thirds of all AI compute in 2026, up from one-third in 2023
. Inference also accounts for 80 to 90 percent of the lifetime cost of a production AI system
.
NVIDIA explicitly frames this as a strategic advantage: "NVIDIA achieved a 5x reduction in cost per token through TensorRT-LLM optimization alone within two months of Blackwell launch, with no hardware change" . At datacenter scale, a 5x reduction in cost-per-token directly determines whether agentic AI workloads become economically viable
. NVIDIA's inference software keeps driving down token costs long after AI infrastructure is deployed
.
NVIDIA argues that cost-per-token is the only metric that directly accounts for hardware performance, software optimization, ecosystem support, and real-world utilization . The company publishes "lowest token cost" as its headline Blackwell value proposition
. The NVIDIA B200 achieves two cents per million tokens on GPT-OSS-120B, and the architecture lowered cost-per-million-tokens by 15x versus the prior generation
.