All news
AIJun 10, 2026

Google's DiffusionGemma bets on parallel denoising to break the token-by-token ceiling

DiffusionGemma is Google DeepMind's attempt to prove that text generation doesn't have to crawl one token at a time. The experimental, open-weights 26B Mixture-of-Experts model starts from a block of noise and denoises 256 tokens in parallel until readable text emerges — clearing 1,000 tokens per second on a single Nvidia H100, roughly 4x faster than comparable autoregressive models. It ships Apache 2.0 on Hugging Face, and the honest catch is that its benchmark quality still trails standard Gemma 4.

Why it matters: The autoregressive assumption — predict the next token, then the next — is so universal that most builders never question it, which is exactly why an open-weights counterexample matters. If you run latency-sensitive workloads today, you engineer around token-by-token generation with speculative decoding, batching, and smaller models; a diffusion decoder attacks the bottleneck at its root instead. The quality gap is the whole story here: benchmarks trailing Gemma 4 is the price of a first serious open release, and the trajectory of that gap over the next few iterations is the number to watch. My read is that diffusion won't replace autoregression wholesale, but it's a plausible specialist path for throughput-bound tasks where good-enough-and-fast beats perfect-and-slow. Having it under Apache 2.0 means the open-source community, not just Google, gets to find out where that line falls.

Read the full story at Google DeepMind
Share

Comments