What is DiffusionGemma? Google's open-weights diffusion LLM, explained

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited June 17, 2026

Expert Verified
Illustration of scrambled text tokens resolving into clean readable text, representing DiffusionGemma's parallel denoising

What is DiffusionGemma?

DiffusionGemma is a model in Google's open Gemma family that generates text with a diffusion process rather than the autoregressive approach behind nearly every chatbot you've used. It was released by Google DeepMind on June 10, 2026 as an experimental open-weights model under Apache 2.0, with the official model card living on DeepMind's site.

Here's the headline spec sheet:

AttributeDiffusionGemma
ReleasedJune 10, 2026
LicenceApache 2.0 (open weights)
ArchitectureBuilt on Gemma 4, Mixture-of-Experts
Size25.2B total params, ~3.8B active per step ("26B A4B")
GenerationDenoises blocks of 256 tokens in parallel
Input / outputMultimodal in (text/image/video), text out
Speed>1,000 tok/s on one H100, up to 4x faster than comparable AR models
Hardware~52GB VRAM at BF16, ~28GB at INT8, runnable from ~18GB quantised

Most of those numbers come from MarkTechPost's launch coverage and the Spheron deployment guide, with the parallel-block detail from Digg's writeup. The "26B A4B" label is Google's shorthand: a 26B-class Mixture-of-Experts model that only fires about 3.8B parameters on any given step, which is part of why it's cheap to run fast.

The reason this is a big deal isn't the benchmark scores. It's that a frontier lab shipped a real, downloadable diffusion language model. For years, diffusion was the dominant method for images and video (think Midjourney, Sora) while text stubbornly stayed autoregressive, the same family that powers everyday assistants like ChatGPT and Claude. DiffusionGemma is one of the clearest signals yet that the text side is catching up.

How DiffusionGemma actually works

Standard large language models are autoregressive. As Inception Labs puts it, they "generate text left-to-right, one token at a time, where a token cannot be generated until all the text before it has been generated." Every word waits for the one before it, so a long answer means a long sequence of forward passes through billions of parameters. That's where the latency comes from.

Diffusion flips this. The dominant approach for text is masked diffusion: you start with a block of tokens that are all masked out, and a transformer predicts the unmasked versions, then refines its guess over a handful of passes. Google describes it as generating text "the way image diffusion works: rather than predicting text directly, the model learns to generate outputs by refining noise step-by-step, so it can iterate on a solution quickly and error-correct during generation."

Side-by-side comparison of autoregressive generation filling tokens one at a time versus diffusion refining a whole block of masked tokens in parallel
Side-by-side comparison of autoregressive generation filling tokens one at a time versus diffusion refining a whole block of masked tokens in parallel

One clarification, because the name trips people up. Diffusion here doesn't replace the transformer; it replaces autoregression. As one widely-cited Hacker News comment from user synapsomorphy explained it:

"Diffusion isn't in place of transformers, it's in place of autoregression. Prior diffusion LLMs like Mercury still use a transformer, but there's no causal masking, so the entire input is processed all at once and the output generation is obviously different."

Hacker News, on Gemini Diffusion

The practical upshots of generating in parallel are threefold: raw speed, the ability to error-correct mid-generation, and natural infilling (because the model can see context on both sides of a gap, it's good at editing the middle of a sequence, not just appending to the end). Andrej Karpathy flagged the novelty early, noting that diffusion "doesn't go left to right, but all at once. You start with noise and gradually denoise into a token stream."

DiffusionGemma vs Gemini Diffusion: don't conflate them

This one catches almost everyone, because Google shipped two text-diffusion things within about a year and gave them near-identical names.

Gemini Diffusion was shown at Google I/O in May 2025 as an experimental, waitlist-only model running on Google's infrastructure. You can't download it. DiffusionGemma, by contrast, is the open-weights one you can pull down and run yourself.

Two cards clarifying Gemini Diffusion as closed and waitlist-only versus DiffusionGemma as open-weights, Apache 2.0, and self-hostable
Two cards clarifying Gemini Diffusion as closed and waitlist-only versus DiffusionGemma as open-weights, Apache 2.0, and self-hostable

The fact that Google shipped both an experimental closed model and an open-weights release is itself the story: it's the strongest signal that diffusion language models are past the research-curiosity stage. When a frontier lab open-sources an architecture, it's betting other people will build on it.

The speed numbers (and why they're real-ish)

Speed is the entire pitch, so let's look at the numbers honestly. DiffusionGemma's >1,000 tok/s sits alongside its diffusion cousins, and the gap to autoregressive models is large:

Bar chart comparing generation speed in tokens per second, showing diffusion models around 1,000-1,500 tok/s versus autoregressive models at 60-200 tok/s
Bar chart comparing generation speed in tokens per second, showing diffusion models around 1,000-1,500 tok/s versus autoregressive models at 60-200 tok/s

A few caveats keep this grounded. Almost every figure is measured on an NVIDIA H100, and most are vendor claims. The one independent yardstick in this space, Artificial Analysis, has corroborated the speed of Inception's Mercury models but not yet their quality. For DiffusionGemma specifically, the >1,000 tok/s and up-to-4x figures come from Google and partner write-ups like Yellow.com, not third-party benchmarks yet.

For comparison, the autoregressive models people actually use in production sit far lower on throughput: per Inception's own benchmarks, GPT-4o Mini runs around 59 tok/s and Claude 3.5 Haiku around 61, with speed-optimised Gemini 2.0 Flash-Lite at about 201. So the "roughly 10x faster" framing for diffusion holds, at least on paper.

Where it shines, and where it doesn't

The honest read is that diffusion really is faster on throughput-bound, parallelisable work, but autoregressive still wins for a lot of what production apps actually need. The best single source here is engineer Sean Goedecke's breakdown of diffusion's limitations, and it maps cleanly onto a decision.

Reach for diffusion when the job is high-volume and parallelisable: bulk summarisation, classification, reformatting, translation, or low-latency agent loops where a fast per-step response compounds. Code generation is a particularly good fit because diffusion's infilling nature matches how you edit code, generating the start and end of a block in the same pass.

Stick with autoregressive when you need short outputs (diffusion runs all its denoising passes regardless, so it does extra work to produce a six-token answer), long context windows (diffusion can't reuse the key-value cache as easily, so it recomputes attention over the whole context each pass), or hard chain-of-thought reasoning. On that last point, Goedecke makes the sharpest case:

"One reason to be broadly skeptical about the potential of diffusion models to reason is precisely that they do much less work per-token than autoregressive models do. That's just less space for the model to spend 'thinking.'"

Sean Goedecke, "Strengths and limitations of diffusion language models"

DiffusionGemma itself bears out the trade-off: it stays below standard Gemma 4 on every published benchmark. One engineer writing about production agent stacks put the historical knock on diffusion memorably, that early models "were fast in the way that a broken clock is fast, it doesn't matter how quickly you get the wrong answer" (dev.to). The quality gap is closing at small and mid scale, but it's still visible at the frontier.

The pragmatic move most teams will land on isn't replacement, it's routing: send simple, high-frequency steps (lookups, formatting, classification) to a fast diffusion model and reserve a frontier autoregressive model for deep reasoning. It's the same logic behind picking the right tool for a job rather than one AI helpdesk doing everything.

What DiffusionGemma means for customer support teams

Diffusion sounds perfect for support. Live chat and AI support agents are exactly the low-latency, user-facing case where the gap between a one-second and a several-second response decides whether the tool feels real-time or like "a service you wait on." For customer-facing copilots, sub-second response really can be the difference between adoption and abandonment.

But here's the thing we'd push back on: for a support team, the model architecture matters far less than the orchestration around it. Two caveats land directly on this use case.

First, real support answers lean on long context and retrieval, and long context is exactly diffusion's weak spot. A good answer isn't a from-scratch generation; it's a grounded answer over your knowledge base, ticket history, and policy docs. The retrieval and grounding matter more to answer quality than whether the final tokens came out left-to-right or in parallel, which is the heart of the RAG vs LLM question.

Second, quality and reliability beat raw speed for anything customer-facing. A faster model wired to stale knowledge or weak escalation rules just produces wrong answers faster. That's the broken-clock problem, applied to support.

eesel AI helpdesk dashboard showing connected tickets and knowledge sources, as taken from eesel
eesel AI helpdesk dashboard showing connected tickets and knowledge sources, as taken from eesel

So if you're a support leader reading about DiffusionGemma and wondering whether you need it: probably not directly. What you want is a platform that gets the grounding, guardrails, and helpdesk integrations right, and then quietly benefits from whatever model is fastest and best under the hood. Latency is one lever among many, and it's rarely the one holding your resolution rate back. The bigger question is usually the cost per ticket versus a human handling it.

Try eesel

eesel AI sells AI teammates that live inside your existing helpdesk (Zendesk, Freshdesk, HubSpot, Gorgias, Front) and handle tier-1 support by learning from your past tickets and help docs on day one. The reason it's relevant here: eesel is deliberately model-agnostic, so the architecture debate above is one you don't have to win. What it gets right is the orchestration that actually moves the numbers, like confidence-based routing that drafts instead of sending when it's unsure, and a simulation mode that runs against your past tickets so you can see coverage before going live. Gridwise saw 73% of tier-1 requests resolved in the first month, and pricing is usage-based from $0.40 per resolved ticket with no per-seat fees, so you pay for outcomes rather than GPU-hours.

Frequently Asked Questions

What is DiffusionGemma in simple terms?
DiffusionGemma is an open-weights AI language model from Google DeepMind that writes text using diffusion instead of the usual left-to-right method. Rather than predicting one word at a time, it starts with a block of masked tokens and refines the whole block in parallel over a few passes, which makes generation up to 4x faster. It's part of the open Gemma family and released under an Apache 2.0 licence.
Is DiffusionGemma the same as Gemini Diffusion?
No. Gemini Diffusion is a closed, waitlist-only experiment that runs on Google's own infrastructure, while DiffusionGemma is an open-weights model you can download and self-host. Both use text diffusion, but they are different releases and easy to confuse. If you're comparing Google's AI options, our Gemini pricing guide covers the production models.
How fast is DiffusionGemma compared to a normal LLM?
Google reports more than 1,000 tokens per second on a single H100 GPU, up to 4x faster than a comparable autoregressive model. For context, speed-optimised autoregressive models like Gemini 2.0 Flash-Lite sit around 200 tokens per second. Speed is the whole point of diffusion, which matters for latency-sensitive jobs like a real-time chat response.
Can I use DiffusionGemma for customer support?
You can, but the model architecture is the smaller half of the problem. A good support answer depends far more on what the AI is grounded in (your help docs, past tickets, policies) and the guardrails around it than on raw speed. A platform like eesel's AI helpdesk agent handles that orchestration regardless of which model sits underneath.
How much does DiffusionGemma cost to run?
The weights are free under Apache 2.0, but you pay for the GPU to serve them. It needs roughly 52GB of VRAM at full precision, dropping to about 28GB with INT8 quantisation, so an H100-class card is recommended. If you'd rather not run infrastructure, usage-based tools like eesel AI bill per resolved ticket instead of per GPU-hour.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
GLM-5.2 open-weights model evaluated for business use, benchmark and value theme
Guides

GLM-5.2 for business: is the cheap open-weights model ready for real work?

GLM-5.2 for business: a clear-eyed look at Z.ai's open-weights model, what the benchmarks and the ~1/6th price actually mean, and where it fits real work.

Rama Adi NugrahaRama Adi NugrahaJun 21, 2026
Illustration of scattered noise and masked blocks resolving into clean lines of text, with a stopwatch signalling speed
Guides

Diffusion-based AI models explained: how they work and why they're suddenly fast

A plain-English guide to diffusion-based AI models: how they differ from autoregressive LLMs, why they generate text 10x faster, and what that means for businesses.

Alicia Kirana UtomoAlicia Kirana UtomoJun 17, 2026
Illustration of Google Gemma 4, the open-weight AI model family, running on a laptop and a local server
Guides

What is Gemma 4? Google's open AI model family, explained

What is Gemma 4? A plain-English guide to Google's open-weight model family: the five sizes, the Apache 2.0 license, the benchmarks, and what it means for support teams.

Alicia Kirana UtomoAlicia Kirana UtomoJun 20, 2026
Which LLM is best for customer support use cases in 2026?
Guides

Which LLM is best for customer support use cases in 2026?

The market for customer support AI is exploding, but choosing the right LLM platform can feel overwhelming. Is it GPT-4? Claude 3? The answer isn't the model, but the platform that gives you control. In this guide, we break down the 4 best LLM platforms for customer support use cases in 2026, comparing them on ease of setup, customization, and pricing so you can automate with confidence.

Kenneth PanganKenneth PanganOct 27, 2025
Hero banner for Google AI Ultra explained: features, pricing, and who it's for in 2026
Guides

Google AI Ultra explained: Features, pricing, and who it's for in 2026

Google AI Ultra costs $249.99/month, 12x the Pro plan. I break down what the extra money actually unlocks (Gemini 3.1 Pro, full Veo 3.1, 30 TB, Deep Think) and who should pay for it in 2026.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieMar 11, 2026
Illustration of the MiniMax M3 multimodal AI model with image, audio, and video inputs
Guides

What is MiniMax M3? The open-weight model explained

What is MiniMax M3? A plain-English guide to the open-weight model from MiniMax: its sparse-attention 1M context, real benchmarks, pricing, and what it means for support teams.

Alicia Kirana UtomoAlicia Kirana UtomoJun 20, 2026
Google Gemini 3 pricing breakdown showing model tiers and costs
Guides

Google Gemini 3 pricing in 2026: every plan, model, and API cost explained

A complete breakdown of Google Gemini 3 pricing: consumer plans from $0 to $199.99/mo, API costs from $0.25 to $12/1M tokens, and when each tier actually makes sense.

Rama Adi NugrahaRama Adi NugrahaJun 9, 2026
Banner image for Nano Banana 2 explained: Google's fastest AI image generator in 2026
Guides

Nano Banana 2 explained: Google's fastest AI image generator in 2026

Nano Banana 2 brings together the best of Google's AI image generation: Pro-level quality at Flash speed. Here's everything you need to know about features, access, and use cases.

Stevia PutriStevia PutriFeb 27, 2026
Banner image for Gemini Lyria 3: Google's AI music generator explained
Guides

Gemini Lyria 3: Google's AI music generator explained

A complete guide to Gemini Lyria 3, Google's AI music generation model. Learn how it works, key features, prompting tips, and practical use cases.

Stevia PutriStevia PutriFeb 26, 2026

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free