Trying "DFlash," a Diffusion-Model Approach to Parallel Draft-Token Generation, on Gemma A developer benchmarked DFlash, a diffusion-model-based speculative decoding drafter from Z-Lab, against Gemma-4-12B-it's native Assistant MTP model on an RTX 3060 with 12GB VRAM using llama.cpp. DFlash failed to outperform the Assistant model on the JavaScript coding task, though the testing highlighted where the diffusion drafting approach is and isn't effective. DFlash, introduced in the paper "DFlash: Block Diffusion for Flash Speculative Decoding," predicts multiple tokens in parallel and claims broad model support and gains over EAGLE-3. In the concept edition and the implementation/benchmark edition, we covered a speed-up technique for LLM generation called MTP Multi-Token Prediction . To recap briefly: a lightweight "draft model" predicts a handful of tokens ahead of time, and the main model checks them all at once. When the guesses are right, you leap ahead several tokens in a single step, which is what makes the whole thing feel faster. There's more than one way to build that draft model, and the one we're looking at this time, "DFlash," takes an unusual approach: it uses a diffusion model — the kind of technique you'd normally associate with image generation — to predict multiple tokens all at once instead of one at a time. It claims to support a wide range of models and to significantly outperform EAGLE-3, an existing approach. Those are the claims worth testing directly. The catch is that benchmarks like this are usually measured in an environment the vendor sets up. It's harder to find a case where someone ran it on their own GPU, against an opponent that already has a dedicated, well-optimized MTP model of its own — Gemma-4's native Assistant model. So this time, using the same setup as the implementation/benchmark edition an RTX 3060 with 12GB VRAM, llama.cpp, the same JavaScript coding task , we directly compared DFlash against Gemma-4-12B-it's Assistant model. The short version: DFlash did not outperform the Assistant model. The reasons are technically clear, though, and they draw a fairly clear picture of where DFlash is strong and where it isn't — that's what we'll dig into below. Two new token-prediction techniques appeared in quick succession: DSpark