Google DeepMind released DiffusionGemma on Wednesday, an experimental open-weights model designed for parallel text generation, which NVIDIA immediately optimized to run up to four times faster on local RTX GPUs and DGX Spark systems. The release shifts text generation away from traditional token-by-token autoregressive prediction toward a diffusion-based block generation method.
By pairing a diffusion head with Google's new Gemma 4 architecture, the model denoises up to 256 tokens in a single step. NVIDIA's optimizations target local hardware, including GeForce RTX PCs and RTX PRO workstations, allowing developers to run high-throughput text generation locally without relying on cloud APIs.
Parallel token generation
Traditional large language models generate text autoregressively, predicting one word or token at a time. This sequential process often creates bottlenecks, especially during long-running single-user workloads where generation speeds can stall. According to NVIDIA's announcement of the optimization, DiffusionGemma bypasses this limitation by generating multiple words in parallel.
Instead of sequential prediction, the model denoises up to 256 tokens per step. This block-generation approach allows the system to output entire chunks of text simultaneously. The parallel generation technique significantly reduces the latency typically associated with local LLM inference, opening a new frontier for real-time interactive applications.
Gemma 4 architecture integration
DiffusionGemma is built on top of Google's Gemma 4 architecture, a 26-billion-parameter mixture-of-experts (MoE) model. The MoE design is highly efficient, activating only 3.8 billion parameters per step. This selective activation keeps the computational footprint low while retaining the reasoning capabilities of a much larger model.
Google DeepMind's experimental DiffusionGemma model pairs a specialized diffusion head with this Gemma 4 foundation. The diffusion head treats text generation as a denoising process, similar to how image generation models like Stable Diffusion operate. This hybrid architecture represents a departure from standard decoder-only transformer designs.
Local hardware optimizations
NVIDIA has optimized the model to run across its hardware stack, from consumer-grade local PCs to enterprise cloud infrastructure. The performance enhancements are tailored for NVIDIA GeForce RTX GPUs, the NVIDIA RTX PRO platform, and NVIDIA DGX Spark systems. These optimizations deliver up to a 4x performance speedup compared to non-optimized local baselines.
The technical details published on the RTX AI Garage blog indicate that the speedup is particularly beneficial for single-user workloads. Developers and researchers can run the model entirely on local RTX hardware, eliminating the need to transmit sensitive data to external cloud servers.
Licensing and deployment
Google has released DiffusionGemma with open weights under a permissive Apache 2.0 license. This licensing choice allows developers, researchers, and commercial entities to modify, integrate, and distribute the model without restrictive proprietary barriers. The open-source nature of the release encourages community-driven experimentation with diffusion-based text generation.
Because the model runs locally on RTX and DGX Spark systems, it requires no active internet connection or cloud subscription to function. This local-first deployment model ensures low-latency execution and complete data privacy, making it suitable for offline development environments and sensitive enterprise applications.