Colibri Runs GLM-5.2 on a Slow PC, and the Real Debate Is Memory Movement
Original: Show HN: Getting GLM 5.2 running on my slow computer View original →
Colibri is a small-engine experiment for running GLM-5.2, a 744B-parameter Mixture-of-Experts model, on consumer hardware with roughly 25GB of RAM. The design leans on the fact that a sparse MoE does not activate every parameter for every token. Dense parts stay resident in RAM, while routed experts live on disk and are streamed as needed.
The interesting part is not the slogan of “huge model on a slow computer,” but the engineering boundary it chooses. The project describes a pure C runtime with no Python, BLAS, or GPU requirement, plus validation against a transformers oracle. Its README says the dense section is kept in int4 form, while tens of thousands of routed experts are handled through a per-layer LRU cache, an optional pinned hot store, and the operating system page cache.
That framing is why the HN thread quickly moved from novelty to throughput. Commenters asked whether practical use means tokens per second or something closer to one token per minute. Others compared the approach with mmap behavior in llama.cpp, aggressive quantization, and unified memory on Apple Silicon. The real question is not whether a large MoE can be made to run; it is which workloads remain useful when storage and memory movement dominate.
Colibri reads less like a production inference stack and more like a useful stress test for local AI. Instead of shrinking the model until it fits, it asks whether the active slice can be read cheaply enough. If that path keeps improving, the next local-inference gains may come from storage layout, cache policy, compressed KV-cache design, and smarter routing rather than raw GPU size alone.
Related Articles
HN pushed the campaign because the real question is who gets to decide whether people can run capable models on their own machines.
A LocalLLaMA build with five RTX PRO 6000 cards and a 5090 made the practical cost of serious local inference hard to ignore.
A March 21, 2026 Hacker News discussion sent tinygrad's tinybox page back up the front page and put a shipping local AI workstation in front of builders looking beyond rented GPU time. The product pitch is notable because it pairs concrete specs with pricing that targets labs and startups trying to run bigger models on premises.