Technology
Hacker News

Running Gemma 4 26B at 5 tokens/sec on a 13-year-old Xeon with no GPU

Source Entity

Hacker News

July 15, 2026
Running Gemma 4 26B at 5 tokens/sec on a 13-year-old Xeon with no GPU

A technical achievement has been reported where the Gemma 4 26B large language model was successfully run on a 13-year-old Xeon processor without a GPU, achieving a usable speed of 5 tokens per second through optimized inference.

Breaking Hardware Barriers: Gemma 4 26B on Legacy Silicon

In a surprising demonstration of software optimization over raw hardware power, a user has successfully deployed the Gemma 4 26B model on a 13-year-old Xeon processor. The most striking aspect of this achievement is the complete absence of a dedicated Graphics Processing Unit (GPU), which is typically considered mandatory for running models of this scale. Achieving a throughput of 5 tokens per second on hardware from the early 2010s challenges the prevailing narrative that cutting-edge AI is reserved exclusively for those with expensive, modern H100 or A100 clusters.

The Significance of 5 Tokens Per Second

To the average user, "5 tokens per second" might seem slow compared to the instantaneous responses of cloud-based APIs. However, in the context of local LLM (Large Language Model) inference on a CPU, this is a remarkably usable speed. It roughly equates to a reading pace that is comfortable for a human, meaning the model can generate text in real-time without significant lag. For a 26-billion parameter model, which requires substantial computational overhead for every single token generated, this performance indicates an incredibly efficient pipeline between the CPU and the system memory.

The Magic of Quantization and Memory Bandwidth

This feat is likely made possible through advanced quantization techniques. A 26B model in full 16-bit precision would require over 50GB of VRAM/RAM, which would be impossible for most legacy systems to handle efficiently. By using 4-bit or even lower quantization (such as GGUF or similar formats), the memory footprint is slashed, allowing the model to fit within the system RAM of an old Xeon workstation. Furthermore, older Xeon processors often featured multi-channel memory architectures that provided higher memory bandwidth than consumer-grade CPUs of the same era, which is the primary bottleneck for LLM inference.

Historical Context of Xeon Architecture

Looking back 13 years takes us to the era of Sandy Bridge or Ivy Bridge architectures. While these processors lack the specialized AI tensor cores found in modern GPUs or the AMX (Advanced Matrix Extensions) found in the latest Intel chips, they are renowned for their stability and massive cache sizes. This experiment proves that the fundamental mathematical operations required for transformer-based models—primarily matrix-vector multiplications—can still be executed effectively on general-purpose CPU instructions, provided the software layer (such as llama.cpp or similar inference engines) is highly optimized.

Implications for AI Democratization

This development has profound implications for the democratization of Artificial Intelligence. It suggests a future where powerful, private, and local AI is not gated by the "GPU tax." If a 26B parameter model can run on a decade-old server, it opens the door for legacy enterprise hardware to be repurposed as local AI nodes. This reduces the reliance on expensive cloud subscriptions and ensures that data privacy can be maintained by keeping the model entirely offline on hardware that would otherwise be destined for an e-waste center.

Future Trends in Local Inference

Moving forward, we can expect a continued divergence between "training" and "inference." While training will always require massive GPU clusters, the trend for inference is clearly moving toward efficiency. We are likely to see more "Small Language Models" (SLMs) that punch above their weight class and further optimizations that leverage CPU-specific instructions. The success of Gemma 4 on legacy hardware signals that the industry is moving toward a world where the intelligence of the model is decoupled from the cost of the hardware required to run it.

Conclusion

The ability to run Gemma 4 26B at a usable speed on a 13-year-old Xeon CPU is a triumph of engineering. It highlights that the path to accessible AI is not just through faster chips, but through smarter software. By leveraging quantization and the untapped potential of legacy server hardware, the barrier to entry for running sophisticated AI models has been significantly lowered.

Verification Required?

Read the full report from the primary source

Go to Hacker News