FULL STORY

Google Unveils DiffusionGemma to Explore Text Diffusion

Google DeepMind released a report on DiffusionGemma, using parallel diffusion decoding to break autoregressive speed limits. The community later analyzed its advantages in throughput and error correction.

2026-08-04 ~ 2026-08-11 · 3 episodes · 12 posts

Episode 1 · DiffusionGemma: Parallel Diffusion Decoding Breaks LLM Inference Speed Bottleneck (2026-08-04, 8 posts)

Google DeepMind released the technical report for DiffusionGemma, an experimental open-weight language model. Using discrete diffusion, it breaks the traditional autoregressive token-by-token decoding paradigm, enabling parallel iterative refinement of 256-token blocks and achieving 1500 tokens per second on a single GPU. This offers a novel parallel decoding approach to overcome LLM inference speed bottlenecks.

Confirmed

  • Core mechanism and parameters: DiffusionGemma is built on Gemma 4 (25.2B total parameters, 3.8B active), using discrete diffusion with bidirectional attention and iterative refinement to output 256 tokens in parallel.
  • Online post-training: After supervised fine-tuning (SFT), the team combined sampler distillation with reinforcement learning. This online post-training mechanism pushes the model's quality and inference speed to a new Pareto frontier.
  • Performance advantages: According to author @bodonoghue85, the architecture not only achieves 1500 tokens/sec on a single GPU but also shows significant latency and throughput advantages at low-to-moderate batch sizes, with benefits increasing with context length.
  • Application scenarios: In strongly input-constrained scenarios (e.g., code editing where output is highly similar to input), the model shows significant advantages over autoregressive models.

Why it matters

  • This 55-page technical report thoroughly explores the application of diffusion models in language generation. Its parallel decoding idea shows great potential in tasks requiring highly constrained or structured outputs, potentially greatly improving inference efficiency of large models in real-world engineering.

Episode 2 · Advantages of Text Diffusion Models: Non-Causal Correction and High Throughput (2026-08-04, 2 posts)

Text diffusion models outperform traditional autoregressive models by leveraging bidirectional attention and iterative refinement for non-causal error correction. Additionally, they offer significant latency and throughput advantages in small to medium batch sizes, which scale positively with increased context length.

Episode 3 · Google Releases DiffusionGemma Technical Report on Text Diffusion (2026-08-11, 2 posts)

Google has published the full technical report for DiffusionGemma, sharing key insights into text diffusion models. Concurrently, the llama.cpp community has already submitted a PR to adapt the model for local inference.