explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

custom AI agents

[email protected]

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource librarydemofor LLMs

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

More from us

InfloqInfluencer marketingBgBlurPrivacy-first blurOlly SocialSocial AI copilotCeptoryVideo intelligenceBgRemoverBackground removal

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightssubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • Why diffusion for text?
  • Speed numbers that matter
  • Architecture and footprint
  • The quality trade-off
  • Multimodal toolkit inherited from Gemma 4
  • Ecosystem and how to run it
  • DiffusionGemma vs autoregressive: decision table
  • Industry context (June 2026)
  • Related explainx.ai guides
  • Summary
← Back to blog

explainx / blog

DiffusionGemma: Google’s 4× Faster Open Model Uses Text Diffusion

Google DeepMind releases DiffusionGemma—26B MoE, Apache 2.0, up to 4× faster text gen via parallel 256-token blocks. H100 1000+ tok/s, runs on 18GB VRAM.

Jun 11, 2026·6 min read·Yash Thakker
Google DeepMindGemmaOpen SourceLLMDiffusion Models
go deep
DiffusionGemma: Google’s 4× Faster Open Model Uses Text Diffusion

On June 10, 2026, Google DeepMind released DiffusionGemma—an experimental open-weights model that generates text with discrete diffusion instead of predicting one word at a time. @Google and @GoogleDeepMind pitched it as up to 4× faster on dedicated GPUs; CEO Sundar Pichai called it a "racehorse" for interactive apps.

TL;DR

SpecDiffusionGemmaStandard Gemma 4 (26B A4B)
MethodParallel 256-token diffusion blocksAutoregressive (token-by-token)
Total / active params26B MoE / 3.8B active25.2B / 3.8B active
Speed (H100)1000+ tok/sBaseline
Speed (RTX 5090)700+ tok/sBaseline
VRAM (quantized)~18 GBSimilar class
LicenseApache 2.0Gemma terms
QualityLower on most benchmarksProduction recommended
Best forInteractive local, low latencyMax quality, cloud QPS
Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.


Why diffusion for text?

Nearly every LLM today is autoregressive: generate token t, then t+1, each depending on all prior tokens. Decode becomes memory-bandwidth-bound—the GPU waits on KV cache reads more than it computes.

DiffusionGemma inverts the decode bottleneck:

mermaid
flowchart LR
  A[Encoder prefills context] --> B[KV cache built]
  B --> C[256-token canvas of masked tokens]
  C --> D[Parallel denoising passes]
  D --> E[Canvas finalized → append to cache]
  E --> F[Next canvas…]

From the Hugging Face Gemma 4 launch post:

  • An autoregressive encoder prefills prompts and builds the KV cache.
  • A diffusion decoder applies bidirectional attention over a 256-token canvas.
  • The model iteratively denoises the full canvas; finalized tokens append to cache; the next canvas begins.

Block-autoregressive across canvases, parallel within each canvas—roughly 15–20 tokens per forward pass versus one.


Speed numbers that matter

Google's published throughput (official blog):

HardwareThroughput
NVIDIA H100 (single GPU)1000+ tokens/sec
GeForce RTX 5090700+ tokens/sec
vs autoregressive Gemma 4Up to ~4× faster

@sundarpichai:

DiffusionGemma is an open, experimental model that brings our text diffusion research to Gemma 4. It's a racehorse 🏇 achieving up to 4x faster inference by generating entire blocks of text simultaneously vs predicting token-by-token output!

Adaptive compute: Simpler prompts and structured tasks (code infilling, markdown) can use fewer denoising steps, so tokens-per-second scales with task complexity.


Architecture and footprint

DiffusionGemma shares Gemma 4's 26B A4B MoE foundation:

AttributeValue
Total parameters~26B (25.2B in HF spec)
Active per forward3.8B (8 of 128 experts + 1 shared)
ContextUp to 256K tokens
ModalitiesText + image in; text out
Languages140+
Canvas size256 tokens per diffusion block

Self-correction: Bidirectional denoising lets the model revise masked tokens mid-block—useful for markdown formatting and structured output. Autoregressive models commit each token permanently.

Local footprint: Quantized weights target ~18 GB VRAM—high-end consumer GPUs without datacenter hardware.


The quality trade-off

Google is explicit: use autoregressive Gemma 4 for production quality. DiffusionGemma is experimental—speed first.

Benchmark snapshot (Hugging Face Gemma 4 blog):

BenchmarkDiffusionGemmaGemma 4 26B A4B
MMLU Pro77.6%82.6%
AIME 202669.1%88.3%
GPQA Diamond73.2%82.3%
HLE (no tools)11.0%8.7%

DiffusionGemma wins a few benchmarks and trails on most—the expected Pareto frontier when trading accuracy for throughput.

When speed wins:

  • Inline editing and code infilling
  • Rapid iteration in IDE assistants
  • Real-time markdown / structured formatting
  • Interactive local apps where latency beats absolute benchmark scores

When quality wins:

  • Long-form reasoning, agents, production RAG
  • High-QPS cloud serving where Gemma 4 autoregressive stacks are tuned

Multimodal toolkit inherited from Gemma 4

DiffusionGemma is not a text-only hack—it ships the broader Gemma 4 feature set:

  • Thinking mode
  • Function calling
  • Native system prompts
  • Image understanding — OCR, document parsing, object detection, pointing at variable aspect ratios

Released alongside the wider Gemma 4 family (E2B, E4B, multimodal on-device models), DiffusionGemma is the speed-specialized sibling under the same Apache 2.0 open license.


Ecosystem and how to run it

Download: Hugging Face model hub (Apache 2.0).

Serving and tuning:

StackSupport
Hugging Face TransformersYes
vLLMYes
NVIDIA NeMo / NIMYes
MLX (Apple Silicon)Community ports
UnslothFine-tuning
llama.cppAnnounced coming soon at launch
Google Cloud Model GardenYes

NVIDIA optimization: NVFP4 4-bit kernels on Hopper/Blackwell; consumer RTX 5090/4090; DGX Spark and DGX Station for deskside local AI.


DiffusionGemma vs autoregressive: decision table

QuestionChoose DiffusionGemmaChoose Gemma 4 AR
Need lowest latency locally?✅
Need best benchmark scores?✅
Interactive editing / infilling?✅
Agent loops with tool use?Caution—verify quality✅
Apache 2.0 open weights?✅Gemma license
18 GB consumer GPU?✅ (quantized)✅ (smaller variants too)

For agentic coding stacks, DiffusionGemma is interesting as a local copilot engine—pair speed with verification loops (loop engineering) rather than trusting first-pass quality.


Industry context (June 2026)

DiffusionGemma landed the same week as Claude Fable 5, Code with Claude Tokyo agent scheduling, and Thariq's agent-edited launch video—a dense news cycle where speed (DiffusionGemma), autonomy (Fable, managed agents), and orchestration (workflows) all advanced in parallel.

Google's bet: decode parallelism matters for the next wave of on-device and IDE-embedded models, even if autoregression keeps the quality crown for now.


Related explainx.ai guides

  • Gemma chat offline on Apple Silicon — local Gemma workflows
  • Loop engineering — verify fast first drafts
  • Code with Claude Tokyo: scheduling and vaults
  • What are LLM tokens? — why token throughput matters
  • Top 10 LLM directories — where open models are indexed

Primary sources: Google DiffusionGemma blog · Hugging Face Gemma 4 launch · @Google · @sundarpichai


Summary

DiffusionGemma is Google's open speed experiment: 26B MoE, 256-token parallel diffusion blocks, 4× faster on H100/5090, 18 GB quantized local runs, Apache 2.0. Sundar Pichai's racehorse framing is apt—it wins races where latency dominates, not where MMLU Pro does.

For production text quality, Google still points to autoregressive Gemma 4. For interactive local generation, inline edits, and researcher exploration of text diffusion, DiffusionGemma is the model to benchmark this week.


Specs, benchmarks, and serving support reflect Google's June 10, 2026 release. Re-check Hugging Face and the Google developers blog before production deployment.

Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Jul 3, 2026

Can Claude or LLMs Watch a Video? Here's How to Make It Work

Pasting a YouTube link into ChatGPT reads the transcript, not the picture. Claude often rejects video files outright. Here is what actually works in 2026 — native multimodal APIs, local frame+transcript pipelines like claude-real-video, and transcript-first agents like video-use — with honest limits and cost math.

Jun 23, 2026

AirLLM: Run 70B Language Models on a 4GB GPU — No Quantization, No $10K Hardware

The standard assumption for running a 70B model locally: you need 140GB of VRAM. AirLLM breaks that assumption by loading layers one at a time from disk, holding only one layer in GPU memory at any moment. 21K+ GitHub stars, three lines of code to start. Here is what it actually buys you and what it costs you.

Jun 23, 2026

Run GLM-5.2 Locally: 744B Parameters, 40B Active, on a 256GB Mac or 245GB RAM PC

GLM-5.2 has 744B parameters but only 40B are active at any time — that's what makes it runnable locally. The 2-bit dynamic GGUF fits in 239GB of disk/RAM. With Unsloth Studio's web UI, you can run it on a Mac without touching the command line. Here is the full guide.