researchNVIDIA

NVIDIA Releases Nemotron-Labs Diffusion Models With 6.4× Faster Token Generation Than Autoregressive Decoding

TL;DR

NVIDIA has released Nemotron-Labs Diffusion, a family of diffusion language models at 3B, 8B, and 14B scales that generate multiple tokens in parallel rather than one at a time. The 8B model achieves 6.4× higher tokens per forward pass than autoregressive models in self-speculation mode while maintaining comparable accuracy.

2 min read
0

NVIDIA Releases Nemotron-Labs Diffusion Models With 6.4× Faster Token Generation

NVIDIA has released Nemotron-Labs Diffusion, a family of diffusion language models that generate tokens in parallel rather than sequentially, achieving up to 6.4× higher tokens per forward pass than traditional autoregressive models.

Model Specifications

The Nemotron-Labs Diffusion family includes:

  • Text models: 3B, 8B, and 14B parameter versions
  • Vision-language model: 8B parameter multimodal variant
  • License: NVIDIA Nemotron Open Model License (text models), NVIDIA Source Code License (VLM)
  • Training data: 1.3T tokens for pretraining, 45B tokens for supervised fine-tuning
  • Release includes: Base models, instruction-tuned chat variants, and training code via NVIDIA Megatron Bridge framework

Performance Benchmarks

According to NVIDIA, the 8B model demonstrates:

  • 1.2% higher average accuracy than Qwen3 8B
  • 2.6× tokens per forward pass in diffusion mode versus autoregressive models
  • 6× TPF with linear self-speculation
  • 6.4× TPF with quadratic self-speculation
  • ~865 tokens/sec on B200 GPU in self-speculation mode (approximately 4× autoregressive baseline)

Tokens per forward pass (TPF) measures decoding efficiency independent of specific hardware configurations.

Three Generation Modes

Nemotron-Labs Diffusion supports three inference modes in a single model:

  1. Autoregressive mode: Standard left-to-right generation for compatibility with existing workflows
  2. Diffusion mode: Generates 32-token blocks in parallel, iteratively refining tokens across multiple denoising steps
  3. Self-speculation mode: Uses diffusion to draft candidate tokens, then verifies them autoregressively

Developers can switch between modes at deployment time without application-level changes.

Technical Architecture

The models build on recent research showing pretrained autoregressive models can be converted to diffusion language models through continued pretraining. Key design elements:

  • Block-wise attention mechanism enables KV-cache compatibility
  • Joint AR and diffusion training objective preserves original autoregressive capabilities
  • Confidence thresholding determines when generated tokens are committed
  • Built-in inference budget control through adjustable refinement steps

Unlike autoregressive models that finalize each token immediately, diffusion models can revise previously generated tokens, making them suitable for text editing and fill-in-the-middle tasks.

Deployment

Inference support is available through SGLang, with integration currently accessible via GitHub issue tracker. The same checkpoint can serve all three generation modes through a single configuration parameter (ar_mode).

NVIDIA reports self-speculation mode produces lossless output versus autoregressive decoding at temperature 0, maintaining deterministic compatibility.

What This Means

Nemotron-Labs Diffusion addresses a fundamental bottleneck in language model inference: memory bandwidth. Traditional autoregressive models spend most GPU time on memory operations rather than computation, particularly at small batch sizes. By generating and refining multiple tokens in parallel, diffusion models better utilize modern GPU architectures.

The ability to switch between AR and diffusion modes in the same model is the practical innovation here. Developers can deploy autoregressive mode for maximum compatibility, diffusion for throughput-critical workloads, or self-speculation when both speed and deterministic output matter. The 6.4× speedup claims remain to be independently verified, but if confirmed, this represents a meaningful shift in how inference-optimized models might be designed.

Related Articles

model release

NVIDIA Nemotron 3.5 Lightning Arrives on Amazon SageMaker JumpStart, Targets High-Volume Agentic Workloads

NVIDIA's Nemotron 3.5 Lightning, a 30B-parameter hybrid Mixture-of-Experts model with only 3B active parameters, is now available for one-click deployment on Amazon SageMaker JumpStart. NVIDIA claims up to 4x higher throughput and 30% faster task completion for high-volume agentic workloads compared to larger frontier models.

model release

NVIDIA Releases Nemotron 3.5 Lightning: 30B MoE Model with 1M Token Context and 3B Active Parameters

NVIDIA released the full-precision BF16 reference weights for Nemotron 3.5 Lightning, a 30B-parameter Mixture-of-Experts model with only 3B active parameters and support for up to 1 million tokens of context. The model uses a hybrid Mamba-2, MoE, and Attention architecture and is licensed under OpenMDW-1.1 for commercial use.

model release

Nvidia Reportedly Building Trillion-Parameter Nemotron 4 to Match Chinese Open Models

Nvidia is reportedly building Nemotron 4, an open-weight model with at least one trillion parameters — double the size of Nemotron 3 Ultra. The company has tripled its cloud spending on in-house training to $28 billion through 2031, with an earliest possible release this fall.

model release

NVIDIA Releases Nemotron 3.5 Lightning 30B-A3B: 3B-Active MoE Model With 1M-Token Context, Quantized for Single-GPU Depl

NVIDIA has published NVIDIA-Nemotron-3.5-Lightning-30B-A3B-NVFP4, a 30-billion-parameter Mixture-of-Experts model with only 3B active parameters, a hybrid Mamba-2/MoE/Attention architecture, and support for up to 1 million tokens of context. The NVFP4-quantized checkpoint is designed to run on a single DGX Spark (GB10) or H100 GPU.

Comments

Loading...