๐ฆ๐๐ป๐ฑ๐ฎ๐ ๐๐ผ๐ณ๐ณ๐ฒ๐ฒ & ๐๐ผ๐ฑ๐ฒ - ๐๐ถ๐ณ๐ณ๐๐๐ถ๐ผ๐ป๐๐ฒ๐บ๐บ๐ฎ ๐ผ๐ป ๐ฎ ๐ฎ๐ฐ๐๐ ๐๐ฃ๐จ (๐๐๐ฝ, ๐๐๐ถ๐น๐น ๐๐ฒ๐บ๐บ๐ฎ)
Grab a big coffee - last week I said โ๐ช๐ต ๐ธ๐ฐ๐ถ๐ญ๐ฅ ๐ฃ๐ฆ ๐ช๐ฏ๐ต๐ฆ๐ณ๐ฆ๐ด๐ต๐ช๐ฏ๐จ ๐ต๐ฐ ๐ต๐ณ๐บ ๐ต๐ฉ๐ฆ 26๐ ๐๐ฐ๐ ๐ฎ๐ฐ๐ฅ๐ฆ๐ญ.โ Google ๐๐ถ๐ณ๐ณ๐๐๐ถ๐ผ๐ป๐๐ฒ๐บ๐บ๐ฎ enters the room - a 26B MoE that doesnโt generate text one token at a time, it ๐ฅ๐ฆ๐ฏ๐ฐ๐ช๐ด๐ฆ๐ด blocks of 256 tokens in parallel, like a photo coming into focus. Mission: get a new diffusion LLM running on my single L4 (24GB) via vLLM (๐ฎ๐ข๐บ๐ฃ๐ฆ ๐ต๐ช๐ฎ๐ฆ ๐ต๐ฐ ๐ถ๐ฑ๐จ๐ณ๐ข๐ฅ๐ฆ ๐ฎ๐บ ๐๐๐ ๐๐2 ๐ด๐ฆ๐ณ๐ท๐ฆ๐ณ).
Small problem: the weights are 49GB. My card is 24GB (Claude to the rescue).
๐ง๐ต๐ฒ ๐ผ๐ฏ๐๐๐ฎ๐ฐ๐น๐ฒ ๐ฐ๐ผ๐๐ฟ๐๐ฒ:
- CUDA mismatch: PyTorch wheels built for CUDA 13, my driver stuck at 12.8. Fixed with vLLMโs cu129 wheel.
- 49GB of weights vs 24GB of VRAM: Red Hat published a 4-bit quant version - 17GB, fits.
- A vLLM bug where an unrelated modelโs warmup kernel crashed startup. Patched locally, bug report heading upstream.
- Memory Tetris: 0.90 GPU utilization OOMโd, 0.80 starved the KV cache. 0.86 + 16k context: ๐๐ฑ๐ฑ๐ญ๐ช๐ค๐ข๐ต๐ช๐ฐ๐ฏ ๐ด๐ต๐ข๐ณ๐ต๐ถ๐ฑ ๐ค๐ฐ๐ฎ๐ฑ๐ญ๐ฆ๐ต๐ฆ.
๐ง๐ต๐ฒ ๐ฝ๐ฎ๐๐ผ๐ณ๐ณ:
- Asked it about the Chamber of Secrets. Coherent, well-structured answer - you can literally read the modelโs thinking block planning the outline before it writes.
- The metrics tell the diffusion story: ๐ญ๐ฏ.๐ฐ๐ณ ๐๐ผ๐ธ๐ฒ๐ป๐ ๐ฐ๐ผ๐บ๐บ๐ถ๐๐๐ฒ๐ฑ ๐ฝ๐ฒ๐ฟ ๐ณ๐ผ๐ฟ๐๐ฎ๐ฟ๐ฑ ๐ฝ๐ฎ๐๐. An autoregressive model commits exactly 1. It even stopped denoising early when confident.
- ~51 tokens/s on a $0.80/hr GPU - and thatโs the floor, not the ceiling.
๐ช๐ต๐ฎ๐ ๐ ๐น๐ฒ๐ฎ๐ฟ๐ป๐ฒ๐ฑ:
- The memory squeeze is three levers: quantization, context window (hello again, num_ctx), and GPU memory utilization. vLLM makes you set all three; Ollama quietly decides for you.
- Model released โ community quants โ running on commodity hardware happens very quickly. The gap between โannouncedโ and โtest it yourselfโ has collapsed.
Anyone else poking at diffusion LLMs yet,?
A good Sunday, and the coffee went cold around the third OOM.
- Model: https://huggingface.co/google/diffusiongemma-26B-A4B-it
- The quant that made it fit: https://huggingface.co/RedHatAI/diffusiongemma-26B-A4B-it-NVFP4
