Skip to content
gentic.news — AI News Intelligence Platform
Connecting to the Living Graph…

Listen to today's AI briefing

Daily podcast — 5 min, AI-narrated summary of top stories

NVIDIA TwoTower: 2.4x Faster LLM Decoding, 98.7% Quality
AI ResearchScore: 95

NVIDIA TwoTower: 2.4x Faster LLM Decoding, 98.7% Quality

NVIDIA TwoTower clones a pretrained LLM into a frozen context tower and trainable denoiser tower, achieving 2.42x faster generation with 98.7% quality on a 30B MoE model.

·Jul 11, 2026·3 min read··83 views·AI-Generated·Report error
Share:
What is NVIDIA's TwoTower method and how does it improve LLM generation speed?

NVIDIA's TwoTower method clones a pretrained autoregressive LLM into a frozen context tower and a trainable denoiser tower, achieving 2.42x faster generation with 98.7% of original quality on a 30B Mamba-Transformer MoE backbone trained on 2.1T tokens.

TL;DR

2.42x throughput gain on 30B MoE model · Frozen context tower preserves original quality · Trained on only 2.1T tokens, not from scratch

NVIDIA's TwoTower method achieves 2.42x higher generation throughput while retaining 98.7% of the original model's quality. It clones a pretrained autoregressive LLM into a frozen context tower and a trainable denoiser tower, enabling parallel block generation without retraining from scratch.

Key facts

  • 2.42x higher generation throughput
  • 98.7% of original model's quality retained
  • 30B hybrid Mamba-Transformer MoE backbone
  • Trained on ~2.1T tokens vs 25T for pretraining
  • Layer-by-layer cross-attention between towers

NVIDIA researchers have published a method called TwoTower that addresses the fundamental tradeoff between generation speed and output quality in large language models. According to @akshay_pachaar, the technique builds on a 30B hybrid Mamba-Transformer Mixture-of-Experts backbone and was trained on approximately 2.1 trillion tokens — a fraction of the 25T used to pretrain the original autoregressive model.

The core insight is architectural. Traditional diffusion LLMs start with a block of masked tokens and unmask them over several passes, forcing a single network to both understand existing context and predict missing tokens. TwoTower separates these responsibilities by cloning a pretrained autoregressive model into two towers. The first tower is frozen and reads all text written so far, preserving the original model's intelligence without further training. The second tower is trainable and fills in each new block of tokens in parallel, cross-attending to the context tower at every layer.

How the layer-by-layer connection works

The two towers communicate at matching layer depths — denoiser layer 5 connects to context layer 5, and so on — giving the denoiser the backbone's full multi-scale understanding rather than just a final summary. This design allows the trainable tower to leverage the frozen tower's learned representations across all abstraction levels, from low-level syntax to high-level semantics.

Training efficiency and results

The method was trained on only about 2.1 trillion tokens, compared to the 25 trillion used to pretrain the original model. This is not a from-scratch training run; it is an adaptation layer bolted onto an existing autoregressive model. The reported results include a 2.42x improvement in generation throughput while maintaining 98.7% of the original model's quality, though the source does not specify which benchmarks were used for quality measurement. Weights, code, and training recipes have been open-sourced, making the method reproducible for the research community.

The unique take here is that TwoTower effectively turns slow one-token-at-a-time decoding into fast parallel block generation without sacrificing the intelligence baked into the pretrained model. This matters for latency-sensitive applications — real-time chatbots, code completion, interactive agents — where every millisecond of generation delay compounds into a poor user experience.

What to watch

Watch for independent replication of the 98.7% quality retention claim on standard benchmarks like MMLU and HumanEval. Also track whether production inference frameworks (vLLM, TensorRT-LLM) integrate TwoTower-style layer-wise cross-attention into their serving stacks within the next two quarters.

Source: gentic.news · · author= · citation.json

AI-assisted reporting. Generated by gentic.news from multiple verified sources, fact-checked against the Living Graph of 4,300+ entities. Edited by Ala SMITH.

Following this story?

Get a weekly digest with AI predictions, trends, and analysis — free.

AI Analysis

TwoTower's architectural contribution is the layer-wise cross-attention between frozen and trainable towers, which addresses a fundamental limitation of diffusion-based LLMs. Prior work on diffusion LLMs (e.g., MDLM, SSD-LM) attempted to improve quality through better masking schedules or deeper denoising steps, but none successfully decoupled context understanding from token prediction. By keeping the context tower frozen, TwoTower ensures the pretrained model's knowledge is never degraded during fine-tuning — a significant advantage over methods that require full fine-tuning of the backbone. The 2.1T token training budget is remarkably efficient, but the source does not disclose compute cost in FLOPs or GPU-hours, making direct comparison with other methods difficult. The 98.7% quality retention claim also lacks benchmark specificity — without knowing which evaluation suite was used, it's unclear whether this holds for code generation, mathematical reasoning, or open-ended dialogue. The open-source release is a positive signal, enabling the community to verify these results independently. The choice of a 30B Mamba-Transformer MoE backbone is notable. Mamba's state-space model architecture may naturally complement the layer-wise cross-attention design, as its recurrent structure could simplify the alignment between towers. However, the method's generality across different backbone architectures (e.g., pure Transformers, pure Mamba) remains untested in the public domain.
This story is part of
The AI Infrastructure War Shifts from Chips to Developer Tools
Nvidia's enterprise pivot and AWS's OpenAI bet collide with Cursor's quiet ascent

Mentioned in this article

Enjoyed this article?
Share:

AI Toolslive

Five one-click lenses on this article. Cached for 24h.

Pick a tool above to generate an instant lens on this article.

Related Articles

From the lab

The framework underneath this story

Every article on this site sits on top of one engine and one framework — both built by the lab.

More in AI Research

View all