Kimi K3 (2.8T) at 1 token/s on a MacBook Pro, streamed from | Coderz Club

Kimi K3 (2.8T) at 1 token/s on a MacBook Pro, streamed from four SSDs Uh oh! There was an error while loading. Please reload this page. argonautlabsai / deltafin Public forked from gavamedia/deltafin

Kimi K3 (2.8T) at 1 token/s on a MacBook Pro, streamed from four SSDs Uh oh! There was an error while loading. Please reload this page. argonautlabsai / deltafin Public forked from gavamedia/deltafin

By Coderz Club · 2026-09-08 · Tags: ai, git, go

Kimi K3 (2.8T) at 1 token/s on a MacBook Pro, streamed from four SSDs

Uh oh! There was an error while loading. Please reload this page. argonautlabsai / deltafin Public forked from gavamedia/deltafin Notifications You must be signed in to change notification settings Fork 0 Star 3 mainBranchesTagsGo to fileCodeOpen more actions menu Latest commit History41 Commits41 CommitsFolders and filesNameNameLast commit messageLast commit date.github/workflows.github/workflows docsdocs k3-public-benchk3-public-bench nativenative research/studyresearch/study toolstools .gitignore.gitignore CREDITS.mdCREDITS.md Cargo.lockCargo.lock Cargo.tomlCargo.toml LICENSELICENSE README.mdREADME.md View all filesRepository files navigationARGODRIVE Deltafin A fork of gavamedia/deltafin (MIT) running Kimi K3 from SSDs on Apple Silicon, with the ARGODRIVE storage work. The benchmark package, placement manifests and results are in k3-public-bench/; the measurement instruments are published separately as ARGODRIVE. Credits and what this fork changes: CREDITS.md. The upstream README follows. ____ _ _ __ _ | _ \ ___| | |_ __ _ / _(_)_ __ | | | |/ _ \ | __/ _` | |_| | '_ \ | |_| | __/ | || (_| | _| | | | | |____/ \___|_|\__\__,_|_| |_|_| |_| Run the full, never-pruned, 2.8-trillion-parameter Kimi K3 on consumer hardware, as "fast" as possible Deltafin is a single native binary that runs full Kimi K3. Nothing pruned. Nothing skipped. K3 decides every token. All 16 experts, every single token. No shortcuts, no "close enough." It's exactly what Moonshot shipped. The quality rule is simple: K3 itself decides every token, and nobody else. Small draft models are allowed to guess ahead (that's where much of the speed comes from), but K3 checks every guess, and nothing reaches you without its official sign-off. Latest Benchmarks on an M1 Max laptop 0.2901 token/s (3.447 s/token) — 1.9% higher throughput than last update Historical M1 benchmarks: 0.2847 token/s (August 2, 2026) — 7.0% higher throughput 0.2660 token/s (July 30, 2026) — 102.9% higher throughput 0.1311 token/s (July 28, 2026) — 829.8% higher throughput 0.0141 token/s (July 27, 2026) Mission Statement Pure raw uncut K3 quality, as fast as possible. Speed must never come from reducing model quality. Deltafin keeps all 16 routed experts and the full K3 target as the sole authority for every single token. Our goal is to squeeze out every last drop of efficiency possible when running a huge model like K3, with all options on the table... except for reducing quality. But Why?!? Deltafin is not a product pitch. It is an experiment in how far consumer hardware can be pushed, and what we can learn by attempting something so challenging. Kimi K3 targets infrastructure on the scale of 16 nodes and roughly 4.8 TB of aggregate VRAM. That means the full 2.8T parameters and the 1M-token context window, with the expert bank never pruned. On any home setup, this is an extreme constraint. Every 1% improvement is very hard-won. But each gain can teach something. Research and exploration is the point. That is our mission. Not everything has to be a "minimum viable product" to impress venture capitalists. If Deltafin helps make frontier models usable on a $15,000 home setup, instead of a $2,000,000 infrastructure like Kimi recommends, we believe that is worthwhile progress on our self-hosted AI journey. Plus everything learned along the way could even benefit other projects in unexpected ways. “We choose to run the full 2.8-trillion-parameter model locally, and do the other things, not because they are easy, but because they are hard.” — John F. Kennedy probably Other projects appear to run full K3, somehow faster. But look closer: they've re-encoded K3's expert bank down to ~3 bits. Clever engineering toward a different goal: the smallest K3 that fits and is "close enough." Those weights are no longer the ones Moonshot released, and nobody, including them, has measured what those compromises cost. Deltafin is the other experiment: every expert byte exactly as Moonshot shipped it, made as fast as physics allows. 1. New Installation Deltafin installs almost everything it needs. See Requirements if you're missing anything. # 1. Get it git clone https://github.com/gavamedia/deltafin.git cd deltafin # 2. Build it cargo build --locked --release # 3. Download the FULL 1.7 TB K3 model to disk (optional, but fastest) ./target/release/deltafin setup --full Or, if you don't have enough disk space: # 3. Stream K3 as you use it (slower, but 215 GB to start) ./target/release/deltafin setup --stream setup --stream installs the resident model and fetches exact experts on-demand only, initially running far more slowly when routes have no local cache yet. As you build up your cache over time, this can be a way to save space, storing only the parts of the model you use, running entirely off cache on disk. Default DSpark (and optional Qwen) The normal setup includes Inferact's Kimi-K3-DSpark. It takes 6.635 GiB on disk and

View this page on Coderz Club