Fetching from the wire…
Public story · 2026-08-07 · high
The code streams dormant experts off a 1.7 terabyte NVMe drive to hit an 8.24 GB RAM peak, at 32 seconds per token.
Why now: This is landing now because the repo went from zero to 3,009 stars in six days, about 500 a day, unusually fast growth for a systems trick rather than a new model.
FareedKhan ran Kimi K3, a 2.78-trillion-parameter model, on a single CPU using 8.24 GB of RAM, per the project's GitHub repo.
Loaded the normal way, that model needs about 5,560 GB of RAM, more than any single machine holds. Anyone trying to run something this size without a GPU cluster hits the same wall now: storage speed, not compute, decides whether it's possible.
The code streams the dormant mixture-of-experts layers off an NVMe drive and keeps only the active trunk in memory. Output stays byte-identical whether you give it 8 GB of RAM or 224 GB, according to the repo.
Routed experts ship pre-quantized to 0.53125 bytes per parameter, 4-bit with a shared E8M0 scale. The dense trunk stays in bf16. All of it runs in 700 lines of C99.
None of it is fast. A laptop preset runs about 32 seconds per token. A 128 GB server, an AMD EPYC 7763 with 3.2 TB of NVMe, gets that down to 19 to 21 seconds per token. Holding the weights on disk still takes roughly 1.7 TB of storage.
This isn't a way to serve a trillion-parameter model to real users. It's a demonstration of where the wall sits for anyone trying. The 32-second-per-token cost tracks NVMe read speed, not GPU speed, so that's the number that has to move before any of this gets practical.
Each link below shares sources, entities, or timing with this story.
JustVugg/colibri is a dependency-free C engine treating VRAM, RAM, and storage as one memory hierarchy: ~17B dense params resident as int4 (~9.9GB), 19,456 routed experts (~19MB each, ~370GB total across 75 MoE layers) streamed from disk on demand. 14,728 stars since July 1 (~...
An open-weight Chinese frontier model is now a dropdown option in Microsoft's coding product. That happened before anyone finished characterizing what the model does. GitHub's changelog dated August 6 makes Kimi K3 generally available across Copilot Pro, Pro+, Max, Business an...
Moonshot released K3's open weights July 26 with official guidance calling for 64+ accelerators. WASTE (1,366 stars, created July 28) runs it on a 64GB MacBook Pro at 0.45-0.62 tok/s, keeping the 27.28GB trunk resident and streaming experts from NVMe with 3-bit residual vector...
sqliteai/waste (769 stars, created July 28) keeps only K3's 27.28GB trunk resident and streams the ~4% of experts activated per token off SSD, opening the undistilled model in 29.06GB of RAM. The counterintuitive result is the cache table: raising the expert cache from 17.32GB...
DeepSeek released V4 on April 24 and the numbers demand attention. V4-Pro is 1.6 trillion parameters total with 49 billion active, MIT-licensed, native 1M-token context. It scores 80.6% on SWE-bench Verified, putting it within 0.2 points of Claude Opus 4.6. On Terminal-Bench 2...
215 points on Show HN, 4.5-5 tokens/sec on an M5 Mac, plus a 35B model on an iPhone. Critics in the thread landed the real objection: prefill is the bottleneck, roughly half an hour to process 10k tokens on an M5. The architecture bet is what's interesting, though. MoE's ~3B a...
MindPattern daily
One email a day at 7 AM. Sources and a take on every story. Unsubscribe anytime.