— web clipping, 453 words — published 2026-08-10
Post by @analogalok on X
Muse Glimmer, A 30B parameter dense model swallowing a 130,000 token context window using only 19.3 GB of VRAM (extreme efficiency). No KV cache quantization required.
I just benched the new Muse Glimmer 30B (dense) on a single RTX 4090. We are pulling 3,100+ t/s prefill and 75 tokens/second decode. The throughput is violent.
Meta superintelligence lab just open sourced this agentic beast, explicitly engineered to dominate 24GB consumer cards. I pulled the latest llama.cpp source on Ubuntu 22 (CUDA 13) to see if the specs were real. Fed it a 28k token prompt.
Here is the exact llama.cpp God Stack and benchmarking breakdown:
\# 1. The Deep Context Run (No Speculative Decoding)
The architecture uses a massive 16:1 GQA (Grouped Query Attention) ratio. This means the KV cache footprint is practically non existent.
./build/bin/llama-server -m Muse-Glimmer-30B-UD-Q4\_K\_XL.gguf -c 130000 -b 4096 -ub 4096 -ngl 99 --port 8080
Prefill: 3134.95 t/s
Decode: 50.00 t/s
VRAM: 19.34 GB
(I hit 130k context on pristine, unquantized f16 cache and still had 4.5 GB of VRAM left over. Absolute witchcraft).
\# 2. The DFlash Speculative Overdrive
Meta shipped this with a DFlash block diffusion drafter. Let's trade that extra VRAM for pure speed.
./build/bin/llama-server -m Muse-Glimmer-30B-UD-Q4\_K\_XL.gguf -md dflash-kquant.gguf --spec-type draft-dflash --spec-draft-n-max 3 -c 80000 -b 4096 -ub 4096 -ngl 99 --port 8080
Prefill: 1293.69 t/s
Decode: 75.00 t/s
VRAM: 23.93 GB (Maxed out on card)
the dflash gguf is additional 1.6 GBs
\# The Architecture Insight (Muse Glimmer vs. Gemma 4 31B)
If you look at my Gemma 4 31B tests from last week, getting 140k context required heavily degrading the memory with Q4 KV quantization (gemma 31b q4 can do only about 40k context with unquantized kv on a 24gb card). That "unzipping" overhead bottlenecked Gemma's MTP decode speeds down to 65 t/s.
Muse Glimmer completely sidesteps this bottleneck. By using aggressive 16:1 GQA, it keeps the KV cache in native f16 format at massive context lengths. Flash Attention gets to run at maximum uncompressed speed, letting the DFlash drafter push decode safely to 75 t/s without compute lag.
With a 76% on SWE Bench Verified and seamless local tool calling, this model looks promising.
Unsloth's Hugging Face GGUF links, intelligence/agentic benchmark details, and inference throughput performance graphs are posted in the replies.
For 24GB rig, what’s your current go to model?
> **Alok @analogalok** · 2026-08-10
>
> Qwen 3.8 27B hasn't even dropped yet and it's already got a rival.
>
> Zuckerberg just floored the gas pedal on open source AI (Again)
>
> Muse Glimmer (beats gemma 4 31b and qwen 3.6 27b in benchmarks), distilled from Muse Spark , first open model from meta superintelligence labs just x.com/UnslothAI/stat…
>
> [image]