Daily Tech Briefing
AI 科技速览

每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。

AI 快讯
Dev.to AI · 2026/8/4 16:43:03

DiffusionGemma Is Fast Because It Stops Pretending Text Has to Be Written Left to Right

AI 中文解读
谷歌DeepMind本周开源了DiffusionGemma,它最大的亮点是改变了AI“写字”的方式——不再一个词一个词地从左往右蹦,而是像画画一样,先铺满一整块画布再逐步“磨皮”细化。结果就是速度惊人:官方数据显示它每秒能生成约1500个token,而同类模型只有300左右,快了近5倍。 打个比方,传统AI写作就像手写一封信,必须一笔一划按顺序来;DiffusionGemma则像用印章一次性盖出整页轮廓,再快速修补细节。它一次性处理256个token的“草稿”,经过12步打磨就成文,相当于把“多跑几步”换成了“每步干更多活”,在昂贵的高性能芯片上尤其划算。 对普通用户来说,最直观的感受就是AI回复“秒回”不再卡顿。尤其是未来AI代理要连续完成搜索、总结、改代码、跑测试等多步任务时,以前每次等待都像加载网页,现在几乎能无缝衔接。当然,它目前在复杂推理上还略逊于原版Gemma,更像一个“快枪手”而非“最强大脑”,但这个思路给AI服务提速带来了新方向。
<h1> DiffusionGemma Is Fast Because It Stops Pretending Text Has to Be Written Left to Right </h1> <p>Google DeepMind published DiffusionGemma this week, an open-weight language model that generates text with discrete diffusion instead of the usual token-by-token loop.</p> <p>That sounds like a paper detail until you look at the serving numbers. The report says DiffusionGemma averages about 20 tokens per forward pass and roughly 1,500 output tokens per second on a single H100. The comparable Gemma 4 autoregressive setup with multi-token prediction lands around 303 tokens per second in the same table.</p> <p>That number is worth paying attention to. Not because every model is about to become a diffusion model. Because the boring bottleneck in LLM serving is still the bottleneck, and this is one of the cleaner attacks on it.</p> <p>Autoregressive models are easy to reason about. The model writes the next token, then the next token, then the next token. That left-to-right contract is also the tax. Even with speculative decoding, the target model still has to verify a draft sequence, and the useful speedup depends on how much of that draft it accepts.</p> <p>DiffusionGemma tries a different bargain. It starts from Gemma 4 26B A4B, then fine-tunes it into a text diffusion model. Instead of committing one token at a time, it works on a 256-token canvas and denoises a block in parallel. In practice, the report says it uses about 12 denoising steps, so it gets around 20 tokens per forward pass.</p> <p>That shifts the work from "move weights and cache around for every single token" toward "spend more compute per step, but do fewer steps." On modern accelerators, that can be the right trade.</p> <p>This is easy to underestimate if you mostly interact with LLMs through chat windows. For a human reading a single answer, 500 tokens per second and 1,500 tokens per second both feel like "fast enough." For agent systems, the difference is much less cosmetic.</p> <p>Agents burn latency in loops. Search, summarize, inspect, patch, run tests, revise. A workflow that asks the model twenty times does not care only about final-answer quality. It cares about tail latency, per-user throughput, and whether the machine is waiting on memory movement while a GPU sits underused.</p> <p>That is why I like this release more than another benchmark leaderboard. DiffusionGemma is not saying "we found a better chatbot personality." It is saying the serving shape can change.</p> <p>There are real costs. The diffusion mode does not beat the Gemma 4 AR baseline on raw capability. In the report's table, DiffusionGemma scores 69.1 on AIME 2026 versus 88.3 for Gemma 4 with MTP, 69.1 on LiveCodeBench v6 versus 77.1, and 73.2 on GPQA Diamond versus 82.3. The model is faster, not magically smarter.</p> <p>The limitations section is also refreshingly concrete. The authors call out shorter outputs, occasional token stuttering, a multimodal thinking-tag issue, and the fact that the throughput advantage fades at higher batch sizes. Up to about 32 concurrent users, DiffusionGemma can win on throughput. Past that, the higher per-token compute cost lets autoregressive serving catch back up.</p> <p>So the practical read is not "diffusion replaces autoregression." It is "routing gets interesting."</p> <p>For low-concurrency, latency-sensitive work, diffusion decoding may be the right mode. For hard reasoning, long outputs, or high-batch serving, autoregressive decoding may still be the safer default. DiffusionGemma keeping an AR mode matters for exactly that reason. The useful system is probably hybrid, not ideological.</p> <p>That fits where LLM infrastructure keeps going. The winner is rarely one model mode everywhere. It is a router that knows when to pay for accuracy, when to pay for speed, and when a shorter, slightly weaker answer is the correct engineering decision.</p> <p>The open-weight part matters too. Closed diffusion-text APIs are interesting,
分享
阅读原文