⏱️ Estimated reading time: 8 min

Nemotron-3-Ultra hybrid architecture concept

Nemotron-3-Ultra-550B Overview

nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16, released by NVIDIA on June 4, 2026, is a MoE-family model with 550B total parameters and 55B active. The license is OpenMDW-1.1.

The defining characteristic of this model is its architectural composition. It is a LatentMoE hybrid that combines Mamba-2 based SSM, MoE, and standard Attention, with MTP (Multi-Token Prediction) speculative decoding integrated as well. Context length is 1M tokens.

LatentMoE Hybrid Architecture

Mamba-2 + MoE + Attention Combined

Traditional transformer-based LLMs face a bottleneck in long-context scenarios due to attention’s $O(L^2)$ complexity. The SSM (State Space Model) family, particularly the Mamba architecture, approaches this differently with linear complexity ($O(L)$). Mamba-2 is an improved version using structured state space matrices.

Nemotron-3-Ultra mixes Mamba-2 layers with standard Attention layers and combines this with MoE. In theory, the model uses Attention’s precise pattern-capturing ability for shorter sequences, while the linear complexity advantage of SSM takes effect as sequences grow longer.

One important point: empirical data on how this combination actually performs during 1M context serving is still limited. VRAM requirements and actual throughput at long context lengths carry uncertainty until tested directly.

Training Scale

Pre-trained on approximately 20 trillion tokens with a cutoff of September 2025. The corpus is 53.8 TiB across 226 datasets. Post-training cutoff is May 2026. BF16 is the default, and some NVFP4 pre-training recipes have also been published.

Inference Modes

Thinking (reasoning) mode and standard response mode can be switched via the chat template. Tool calling and structured output (such as JSON schema) are also supported.

Language Support

10 languages are officially supported: English, French, Spanish, Italian, German, Japanese, Hindi, Korean, Portuguese (Brazil), and Chinese. Korean is explicitly included.

Benchmarks

Numbers from the HF model card:

Benchmark Nemotron-3-Ultra
SWE-Bench Verified 70.7%
MMLU-Pro 86.8%
IOI 2025 570.0
LiveCodeBench v6 89.0%
GPQA (no tools) 87.0%

SWE-Bench Verified at 70.7% is strong on software engineering tasks. MMLU-Pro at 86.8% is high for knowledge-based multi-domain QA. IOI 2025 at 570.0 is a score on the International Olympiad in Informatics problem set. GPQA at 87.0% reflects performance on graduate-level science questions.

Serving and Deployment

Minimum Hardware Requirements

Per official documentation, the minimum requirement for a single node is 8 B200 or GB200 GPUs. This corresponds to a DGX B200 or GB200 system. Multi-node configurations require 8 or more H100, H200, GB200, or GB300 GPUs along with Ray orchestration. An official support path for existing A100 clusters is not stated in the current model card.

These requirements represent the highest entry barrier among the four models covered here.

Supported Frameworks

  • vLLM v0.22.0 or later (TP/EP support, MTP speculative decoding with 5 tokens)
  • SGLang v0.5.12.post1 or later (chunked prefill, EAGLE)
  • TensorRT-LLM 1.3.0rc17 (Blackwell only)
  • Community GGUF and GPTQ variants

FP8 KV-cache and NVFP4 variants are also supported. The TensorRT-LLM path is currently optimized for Blackwell architecture (B200/GB200).

Deployment Modes

MTP speculative decoding in vLLM operates in units of 5 tokens, which is expected to improve throughput. Chunked prefill is effective for reducing memory peaks during long-context prefill.

ThakiCloud Perspective

Three things to consider first when evaluating this model for on-premises deployment:

Theoretical advantages of the LatentMoE hybrid versus empirical uncertainty. The architecture combining Mamba-2 and Attention has a theoretical basis for gaining linear-complexity benefits from SSM on long contexts. However, actual VRAM consumption and throughput at 1M context remain uncertain until measured directly. This is a new architecture with limited production data. Vendor-provided numbers alone are not sufficient for on-premises deployment decisions; a self-testing phase is required.

Single-node minimum is 8 B200 GPUs, effectively requiring DGX B200. Organizations with H100 clusters will find it difficult to run this model at optimal performance right now. Multi-node H100 configurations are possible but require Ray orchestration and additional network bandwidth. This model is a candidate for organizations actively planning a transition to B200/GB200, but those currently on A100 should expect to stay at the functional evaluation level via community GGUF paths.

Official Korean language support provides a concrete on-premises rationale for Korean enterprises. Korean being listed as one of the 10 officially supported languages is significant. Many large models claim Korean support, but inclusion as an officially evaluated language is less common. This can serve as documented justification for on-premises adoption in Korean-language-critical enterprise sectors such as finance, public services, and healthcare. That said, no separate Korean-language benchmark scores are published, so actual Korean performance needs to be validated with an in-house evaluation set.

The OpenMDW-1.1 license was designed by NVIDIA for open model distribution. A full review of the license text is required before any commercial on-premises deployment.