Qwen3.8-27B running at just 8.45 GB and hitting 60 tok/s on a single RTX 3090 is the kind of local AI result that makes you rethink what a 27B model actually needs.
I tested the new 2.4-bit Qwen3.8-27B quant from trymirai on a real coding task.
The prompt was basically:
Build a voxel pagoda garden.
No pile of separate files.
No huge framework.
Just a single HTML file using Three.js.
The agent setup was:
• Pi Agent
• Medium reasoning
• 10 turns
• 32.5K output tokens
• About 12 minutes
• One prompt to start the project
And it produced the pagoda.
That matters more to me than a model fitting into a certain file size. A heavily compressed model is only useful if it can still maintain context, reason through changes and actually finish a task.
The performance on my setup was also surprisingly strong.
1× RTX 3090
60 tok/s with MTP
44 tok/s without MTP
~1,190 tok/s prefill on a 7K-token prompt
159K context
The GPU was running around 290W.
Then I moved to two 3090s with pipeline parallelism:
2× RTX 3090
66 tok/s decode
~1,890 tok/s prefill
Full 262K context
So the trade-off here is pretty interesting.
The model is slightly larger than some of the more aggressively compressed Qwen3.8-27B releases, but the goal isn’t simply to win a file-size contest.
You want the compressed model to remain useful.
And in this test, the 2.4-bit model was able to handle a multi-turn Three.js build, generate 32.5K tokens and maintain the project through ten turns.
That’s the real promise of aggressive quantization.
Take a model that normally requires much more memory, compress it heavily, put it on hardware that people already own, then see whether it can still perform actual work.
27B parameters.
8.45 GB.
60 tok/s on one 3090.
262K context with two.
That’s a pretty serious local setup for a model this size.
Alexey Fateev