
TL;DR
A developer got Google's Gemma 4 26B running on 2013 Xeon hardware for under $300. The fix for a silent MoE bug is now upstream - here's what it means for local inference.
A Hacker News post from Neomind Labs documents running Google's Gemma 4 26B model on a repurposed HP storage appliance from 2013. No GPU. Dual Xeon E5-2690 v2 processors (Ivy Bridge generation). Under $300 in hardware. The result: about 5.2 tokens per second decode speed - slow, but actually usable for batch work.
The interesting part isn't the benchmark numbers. It's the debugging journey that got there, and what it reveals about the state of local LLM inference on non-standard hardware.
The experiment used an HP StoreVirtual storage appliance, the kind of enterprise hardware that shows up on eBay after datacenter decommissions. The specs:
That last constraint is the important one. Most modern LLM inference code assumes AVX2 at minimum. Ivy Bridge predates that instruction set.
The total hardware cost was under $300. Similar setups are widely available on the used enterprise market.
The author used ik_llama.cpp, a fork optimized for CPU inference with features like MoE routing adapted for CPU execution, speculative decoding, and CPU-ported flash attention.
The build succeeded. The model loaded. It generated text. The problem: the output was "fluent-looking multilingual gibberish."
The root cause was a silent bug in how the code handled Mixture-of-Experts operations on non-AVX2 hardware. Two graph operations - MOE_FUSED_UP_GATE and FUSED_UP_GATE - were gated on AVX2 availability at compile time but generated unconditionally at runtime. On Ivy Bridge, these operations fell through to nothing, leaving the expert FFN outputs as uninitialized memory.
The output looked reasonable because the language model structure was still working - it just had garbage where the expert computations should have been. Deterministic, NaN-free, fluent-looking nonsense.
Newsletter
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools, delivered free every week.
From the archive
Jul 15, 2026 • 9 min read
Jul 15, 2026 • 8 min read
Jul 15, 2026 • 8 min read
Jul 14, 2026 • 7 min read
The fix decomposed the fused MoE operations into separate matrix multiplication calls with fallback implementations. The fix is now upstream as PR #2138.
With the fix applied, the results on Gemma 4 26B-A4B (Q8_0 quantization):
Not fast. But for batch processing, API fallback scenarios, or cost-sensitive applications, it's genuinely usable.
The Hacker News discussion added useful context:
The author confirmed the upstream fix. The original comment was flagged for unclear reasons, but the author reposted noting that PR #2138 contains the fix and is available for anyone with similar hardware.
Others are getting better speeds. One commenter reported 8-12 tokens/sec on a similar 13-year-old CPU, suggesting results vary significantly with context size and settings. Another shared a benchmark gist running various models on dual Xeon with 256 GB DDR4.
The "10 year old Xeon is all you need" meme continues. The thread referenced earlier discussions about running capable models on decade-old enterprise hardware.
Random aside about Android Studio timeouts. Someone asked about Android Studio disconnecting from local models after 10 minutes. No answer, but it's a reminder that tool integrations around local inference are still rough.
The conventional assumption is that local LLM inference requires either a modern GPU or recent CPUs with AVX-512. This experiment challenges that:
Aging enterprise hardware has a use case. Datacenters and enterprises discard hardware that can run 26B parameter models at usable speeds. For organizations with compliance requirements around cloud data, or developers who want inference without API costs, this is a real option.
The software isn't ready. The silent bug that produced fluent gibberish is a good example of how CPU inference paths are under-tested compared to GPU paths. If you're deploying on non-standard hardware, expect to hit edge cases.
Mixture-of-Experts models may be CPU-friendlier. Gemma 4's MoE architecture means only a subset of parameters activate per token. This makes memory bandwidth less of a bottleneck compared to dense models of similar capability.
The cost math works for some use cases. $300 in hardware plus electricity versus $0.15/million tokens from a cloud API. At low volumes, the API wins. At high volumes, or for latency-sensitive applications where you control the hardware, local inference becomes compelling.
If you want to replicate this:
Use the upstream fix. PR #2138 should be merged by now, but verify you have the MoE fallback code if targeting pre-AVX2 hardware.
Expect debugging. The author's experience - successful build, model loads, output looks almost right - is a common failure mode. Validate outputs against known-good implementations.
MoE models are the sweet spot. Dense 26B models will be slower; MoE architectures like Gemma 4-A4B only activate a fraction of weights per token.
Used enterprise hardware is cheap. Dual-socket Xeon systems with 128-256 GB RAM regularly sell under $500. The power draw is significant (200-300W under load) but manageable for dev/test.
The broader point: the floor for capable local inference keeps dropping. You don't need a 4090. You don't need an M-series Mac. A $300 server from 2013 will do the job, slowly but correctly - assuming you can find and fix the bugs in the software stack.
Read next
A solo developer built a 1,300-line C inference engine that runs the 744B GLM 5.2 model on consumer hardware by streaming routed experts from disk. Here's how it works.
6 min readA new distributed inference system pools GPU resources across multiple machines and exposes them through a single OpenAI-compatible API. No RDMA, no NVLink - just QUIC and your existing hardware.
6 min readUnsloth's dynamic quantization makes GLM-5.2 runnable on a 256GB Mac or a 24GB GPU with CPU offloading. Here is the hardware math, the quantization tradeoffs, and what the HN community learned from actually running it.
7 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Desktop app for discovering, downloading, and running local LLMs. Clean chat UI, OpenAI-compatible API server, and autom...
View ToolOpen-source ChatGPT alternative that runs 100% offline. Desktop app with local models, cloud API connections, custom ass...
View ToolPrivate local AI chatbot by Nomic. 250K+ monthly users, 65K GitHub stars. LocalDocs feature lets you chat with your own...
View ToolOpen-source AI pair programming in your terminal. Works with any LLM - Claude, GPT, Gemini, local models. Git-aware ed...
View ToolInstall the dd CLI and scaffold your first AI-powered app in under a minute.
Getting StartedReal-time prompt loop with history, completions, and multiline input.
Claude CodeA complete, citation-backed Claude Code course with setup, prompting systems, MCP, CI, security, cost controls, and capstone workflows.
ai-development
In this video, I demonstrate how to set up and deploy a Llama 3.1 Phi Mistral Gemma 2 model using Olama on an AWS EC2 instance with GPU. Starting from scratch, I guide you through the entire...

Learn more about LLMWhisperer - https://unstract.com/llmwhisperer/ Try LLMWhisperer for FREE - https://pg.llmwhisperer.unstract.com/ Try Unstract for FREE - https://unstract.com/start-for-free/...

Try Chat2DB for free: https://bit.ly/4hEyHq4 #AI #SQL #DataScience #opensource Chat2DB AI: Latest Features Unveiled Hey everyone! In this video, I'll walk you through the latest updates...

A new distributed inference system pools GPU resources across multiple machines and exposes them through a single OpenAI...

A solo developer built a 1,300-line C inference engine that runs the 744B GLM 5.2 model on consumer hardware by streamin...

An 82M parameter text-to-speech model that runs on CPU and produces high-quality speech across multiple languages - no c...

Open-source tool gives Claude Code, Codex, and other agents their own isolated Linux VM on your machine - network firewa...

A solo developer built a complete JavaScript ecosystem from scratch - runtime, engine, package manager, and Electron alt...

The HashiCorp co-founder explains why he chose Zig over Rust for Ghostty, the technical challenges of terminal emulator...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.