Show HN: Getting GLM 5.2 running on my slow computer
- AI
- Open Source
- Infrastructure
- Developer Tools
Colibrì is a proof-of-concept runtime for GLM 5.2, a 744B mixture-of-experts model, built to answer a simple question: can a normal laptop run it at all. The approach is to leave the dense shared parts resident in RAM, quantized to int4, and stream only the routed experts from disk as each token activates them. That lets a machine with roughly 32 GB of memory talk to a model that would normally be far out of reach, at the cost of brutal latency. The author reports around 0.1 tokens per second on their own hardware. People still found it compelling because the point is not a fast chatbot. The point is that local inference for very large sparse models no longer requires datacenter gear if you are willing to redesign the memory hierarchy around RAM, SSD, caching, and sparse activation.
If you care about private or cheap local inference, this is a real design pattern to watch: exploit mixture-of-experts sparsity, keep a hot set in RAM, and treat fast local storage as a second-tier memory pool. Do not treat this repo as production-ready chat infra yet. Treat it as evidence that laptop-scale hardware can now host frontier-class open models if your product can tolerate asynchronous workflows and aggressive systems tuning.
-
github.com
- Discuss on HN