DiffusionGemma: 4x faster text generation
Google DeepMind released DiffusionGemma, an open text model that can generate blocks in parallel for up to 4x faster inference on GPUs.
Intelligence analysis by GPT-5.4 Mini

DiffusionGemma is a 26B open MoE model from Google DeepMind that uses text diffusion instead of left-to-right decoding. It targets low-latency local workflows, trading some output quality for much faster generation and better performance on tasks like inline editing and code infilling.
Most chatbots write one word at a time, like typing slowly on a keyboard. DiffusionGemma tries to fill in a whole page at once, then keeps fixing it, like sketching a picture and sharpening it until it looks right.
Analysis
What Google released
Google DeepMind introduced DiffusionGemma as an experimental open model under Apache 2.0. It is a 26B mixture-of-experts system, but only 3.8B parameters are active during inference. The model is built around text diffusion rather than the usual left-to-right token generation used by autoregressive LLMs.
Why it is faster
Instead of producing one token after another, DiffusionGemma works on a 256-token block in parallel. Google says this shifts the bottleneck from memory bandwidth toward compute and can deliver up to 4x faster text generation on dedicated GPUs. The article cites 1000+ tokens per second on a single NVIDIA H100 and 700+ tokens per second on an RTX 5090.
The model is aimed at speed-sensitive, interactive local use cases such as in-line editing, rapid iteration, code infilling, amino acid sequences, and mathematical structures. Google also says the model can self-correct by refining the whole block over multiple passes, which can help with things like keeping markdown formatting intact.
The trade-off
Google is explicit that this is not the default choice for maximum-quality output. It says standard Gemma 4 remains the better option for production use cases where quality matters most. DiffusionGemma is more of a research and developer experiment for low- to medium-batch workloads on a single accelerator, and the article notes that the speedup weakens in high-QPS cloud serving.
What developers can do with it
The weights are available on Hugging Face, with support paths through MLX, vLLM, Hugging Face Transformers, Hackable Diffusion, Unsloth, and NeMo. Google also says the model can fit within 18GB VRAM when quantized, which makes it relevant for high-end consumer GPUs as well as enterprise hardware.
Key points
- DiffusionGemma is an experimental open model released under Apache 2.0.
- Google says it can generate text up to 4x faster on dedicated GPUs by using diffusion-style parallel decoding.
- The model activates 3.8B of its 26B parameters during inference and can fit in 18GB VRAM when quantized.
- It is designed for local, interactive workflows like editing, code infilling, and rapid iteration, not maximum-quality production output.
- Google says standard Gemma 4 remains the better choice when output quality matters most.
If the speed claims hold up in real apps, developers could get much snappier local AI tools for editing text, filling code, and other interactive work. The model’s small active footprint could make advanced text generation practical on high-end consumer GPUs instead of only big servers.
Google says the model’s output quality is lower than standard Gemma 4, so teams that need the best answers will still prefer the autoregressive model. The article also says the throughput advantage weakens in high-QPS cloud serving and may not translate well to Apple Silicon Macs.



