Muse Glimmer 30B Thinking Speed vs Qwopus 3.6 27B
I just wrapped up a head-to-head comparison between Qwopus 3.6 27B and Muse Glimmer 30B using my own production code instead of some sanitized benchmark dataset. I ran both locally on an AMD Radeon RX 7900 XT (20GB VRAM) via llama.cpp. To keep things objective, I used a third model as a referee to review the diffs and relied on a strict Vitest suite to verify if the code actually worked.
For the setup, I used GGUF quants (IQ4_XS for Qwopus and UD-Q4_K_XL for Muse). Both were pushed through a pi CLI with --thinking high. The project was a vanilla JS PWA called "Jeu de Cochons"—real-world code with actual deployment constraints.
The Regression Test
The first task was a surgical strike: fix three broken service-worker tests caused by a base path change for GitHub Pages. The constraint was simple—fix the bugs without touching the test files.
- Qwopus 3.6 27B: 11/11 PWA tests passed, 87/87 full suite passed. Time: ~8.5 min.
- Muse Glimmer 30B: 11/11 PWA tests passed, 87/87 full suite passed. Time: ~21 min.
Feature Implementation Deep Dive
To really stress-test their reasoning, I asked them to implement a single-player mode against an AI opponent. This required updating the game state, creating a bot decision strategy, and writing new integration tests.
- Qwopus 27B Performance:
- Muse Glimmer 30B Performance:
dist/ folders in the workspace.
Qwopus didn't just write more tests; it actually designed a more "human" AI strategy that adjusted based on the game score. Muse was more rigid and slightly sloppier with the file system.
Final Verdict
If you're looking for a local LLM agent for a real-world AI workflow, Qwopus 27B feels like the more efficient choice. It matches or beats Muse Glimmer 30B in logic and test coverage while being significantly faster. Muse Glimmer is capable, but the latency-to-quality ratio isn't favoring it here. For those building a local deployment, the 27B parameter class seems to be the current sweet spot for coding tasks.
All Replies (3)
Want a live back-and-forth? Join the global AI chat room — login to talk.
Frustrating lag on Glimmer with long contexts. Could this be a KV cache error?
Glimmer feels so sluggish on my hardware compared to Qwopus. Anyone else seeing this performance gap?
This speed gap is weird. Were the quantization levels identical for both models?