Meet FreeToken: An Edge-Native MoE Serving Engine that Runs 753B GLM-5.2 on a Single Workstation GPU
Frontier open-weight models are shipping faster than the hardware assumptions around them.Kimi-K3, GLM-5.2 and DeepSeek-V4-Flash are closing the capability gap with proprietary systems, but releasing parameters only determines who can obtain a model — not who can afford to run it.
Serving them still assumes datacenter-class GPU clusters, and as agentic workloads push inference demand up, that cost lands hardest on individual developers and small teams.Meanwhile, more than a hundred million consumer machines already carry discrete GPUs.
A team of researchers from UC Berkeley and UT Austin propose FreeToken.
The research team argued the missing piece is not hardware but a serving system: it treats a personal machine as a unified, elastic inference platform rather than a small GPU, and continuously maps computation and model state onto whatever GPU, CPU, memory and interconnect bandwidth the machine actually has.
The result is a 35B model at interactive speed on an 8 GB laptop GPU, 284B on a gaming desktop, and the 753B GLM-5.2 on a single workstation card.Is it deployable?Yes, FreeToken is Apache-2.0 on GitHub, published on PyPI as freetoken v0.1.
2 (uv pip install "freetoken[accel]"), and shipped as a one-click desktop app for Windows and Linux at flashml.ai.The CLI targets Linux x8664 with an NVIDIA GPU on driver r580+ (CUDA 13).
ft serve exposes OpenAI- and Anthropic-compatible endpoints on port 1919, and ft launch claude wires up Claude Code, Codex, OpenCode or OpenClaw against your own box.
Who it fits: solo developers, startups and SMB engineering teams whose agent token bills already exceed the cost of a GPU they own; enterprises should treat it as an air-gapped or regulated-workload path, not a datacenter replacement.
Strongest industry fit: healthcare and legal (data never leaves the machine), defense, finance, and IP-heavy R&D.Typical applications: local coding agents, private code review, offline contract analysis, synthetic-data generation, batch evals.
The gap it targets Mixture-of-Experts makes local frontier inference arithmetically feasible.DeepSeek-V4-Flash activates 6 of 256 routed experts in each of 43 layers, so only 13B of its 284B parameters participate in any single token.
Sparsity does not shrink the expert pool, though — at FP4 the full set is roughly 140 GB, so inactive experts sit in host memory and enter the execution path on demand.The research team isolates three failure modes in existing engines (llama.
cpp, KTransformers, Ollama, MoE-Infinity): Prefill destroys sparsity: Thousands of tokens per layer route to nearly the whole expert set, so a prefill pass streams the entire pool across PCIe — about two seconds on an RTX 5090, five on PCIe 4.
0 desktops, ten or more on the x8 links common in laptops.Static placement misses decode traffic: llama.cpp assigns MoE tensors at load time; KTransformers pins a “hot” subset.Routing shifts every token, so most expert evaluations fall to the CPU while the GPU and the PCIe link sit idle.
Consumer CPUs cannot carry the remainder: Dual-channel DDR5 delivers 80–90 GB/s against the 1–1.8 TB/s an RTX 4090 or 5090 draws from on-package memory.(function(){window.addEventListener("message",function(e){ if(e&&e.data&&e.data.ftHeight){var f=document.getElementById("ftx-frame"); if(f)f.style.
height=e.data.ftHeight+"px";}});})(); Three mechanisms Bandwidth-adaptive execution (the q policy): Because DMA transfers and CPU expert execution read from the same host-memory subsystem, a saturated PCIe link leaves a residual bandwidth of BH − BP.
FreeToken splits each step’s m cache misses accordingly: q ≈ m × BP / BH experts are filled into the GPU cache, the rest are computed in place on the CPU, and the two partial sums merge exactly — no approximation, no router modification.
Both bandwidths are profiled on the deployed machine (ft bench bw), which matters: measured BP:B_H is 52.7:77.3 on an RTX 5090 server but 11.8:47.5 on a 4060 laptop.Semantic-aware caching: During prefill, full-layer double buffering streams layer l+1 while the GPU computes layer l.
Recurrent-state checkpoints are anchored at special-token boundaries — thinking blocks, tool calls, tool outputs — precisely where agent harnesses truncate context, so an edit re-prefills only the new suffix.
During decode, a shared LRU expert cache spanning all MoE layers follows the router instead of a placement frozen at load time.Elastic memory management: At scheduler safe points the GPU expert cache is rebuilt under a revised VRAM budget without restarting the engine or reloading the host pool.
Experts are read from disk straight into their final host layout, then pinned; no GPU warmup is required because the first request is served with a cold cache.Results On an RTX 5090, FreeToken sustains 77–83 tok/s on Qwen3.6-35B-A3B (BF16) and 22–25 tok/s on DeepSeek-V4-Flash (MXFP4) — 1.5–2.
3× the strongest baseline, with decode staying within 12% of the single-turn rate across three agentic workloads.Worst-case TTFT stays below 44 s in every cell; llama.cpp hits 232 s, Ollama 179 s and KTransformers 946 s somewhere in the matrix, past the point where agent clients time out.
At equal cache capacity (37% of the Qwen3.6 pool), the global LRU misses 16% of decode-time expert reads against 41% for KTransformers and 62% for llama.cpp.On an 8 GB RTX 4060 laptop the NVFP4 build serves 35B at 39.
3 tok/s — above the 33 tok/s median decode speed measured for Codex in production traces.On a single RTX PRO 6000, GLM-5.2 (753B, 40B active) runs at 14.9 tok/s versus llama.cpp’s 7.3.Data Check #mtp-reality-check-freetoken *{box-sizing:border-box!
important} #mtp-reality-check-freetoken{background:#111!important;color:#e8e8e8!important;border:1px solid #2a2a2a!important;border-radius:12px!important;padding:clamp(12px,2.4vw,18px)!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif!
important;line-height:1.45!important;font-size:clamp(12px,1.8vw,13px)!important;max-width:100%!important} #mtp-reality-check-freetoken p:empty,#mtp-reality-check-freetoken hr,#mtp-reality-check-freetoken del,#mtp-reality-check-freetoken s{display:none!important} #mtp-reality-check-freetoken .
rc-bar{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:5px} #mtp-reality-check-freetoken .rc-ttl{font-size:16px!important;font-weight:800;color:#fff!important} #mtp-reality-check-freetoken .rc-score{border-radius:4px!important;padding:3px 9px;font-size:10px!
important;font-weight:800;letter-spacing:.06em;background:#d64545!important;color:#fff!important} #mtp-reality-check-freetoken .rc-meta{color:#9a9a9a!important;font-size:11px!important;margin-bottom:12px} #mtp-reality-check-freetoken .rc-meta a{color:#76B900!
important;text-decoration:none} #mtp-reality-check-freetoken .rc-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:6px;margin-bottom:6px} #mtp-reality-check-freetoken .rc-cnt{min-width:0;background:#181818!important;border:1px solid #2a2a2a!important;border-radius:7px!
important;padding:8px 6px;text-align:center} #mtp-reality-check-freetoken .rc-cnt b{display:block;font-size:18px!important;font-weight:800;line-height:1.1} #mtp-reality-check-freetoken .rc-cnt span{display:block;font-size:9px!important;letter-spacing:.06em;text-transform:uppercase;color:#9a9a9a!
important;font-weight:700;margin-top:2px} #mtp-reality-check-freetoken .c-ok{color:#76B900!important} #mtp-reality-check-freetoken .c-sr{color:#e0a92c!important} #mtp-reality-check-freetoken .c-fl{color:#e05c2c!important} #mtp-reality-check-freetoken .c-no{color:#d64545!
important} #mtp-reality-check-freetoken .c-nf{color:#8a8a8a!important} #mtp-reality-check-freetoken .rc-form{font-size:10.5px!important;color:#9a9a9a!important;margin-bottom:14px} #mtp-reality-check-freetoken .rc-h{font-size:10px!important;letter-spacing:.12em;text-transform:uppercase;color:#76B900!
important;font-weight:800;margin:16px 0 8px 0} #mtp-reality-check-freetoken .rc-wr
Related
相關文章

AI辦公助手,沒有葵花寶典:五款應用萬字實測報告
AGI-Signal2026.08.24 09:12 · 來自北京全文11936字單項冠軍各有其人。2026年上半年,AI辦公賽道發生了一個根本性變化,工具不再滿足於當“對話框”,而是試圖接管完整任務,寫一段文案、做完一份報告、生成一份PPT,甚至跨應用操作。

Anthropic新模型偷「吃瓜」,最強Fable 5爆冷
Anthropic 近日推出新款 AI 模型,在內部測試中意外展現「吃瓜」能力,引發社群熱議。該模型不僅能快速理解網路迷因與流行語,更在特定任務上表現出人意料,讓原本被外界視為最強對手的 Fable 5 爆冷落後,業界對這項結果感到相當驚訝。目前 Anthropic 官方尚未針對模型實際表現與測試細節做出完整說明,市場則持續關注後續可能的技術更新與應用方向。
端側AI大洗牌:vivo藍心登頂手機大模型榜首,3B小參數跑分逼近雲端巨頭
SuperCLUE發佈手機端側大模型測評,vivo藍心BlueLM3.5 Nano 3B以89.86分居綜合第一。該3B小模型得分逼近谷歌Gemini3.6 Flash、豆包Seed2.1 Pro、千問Qwen3.8 Max等雲端大模型,展現端側性能突破。
Kimi K2.5 月底退役:月之暗面第一代萬億參數多模態模型謝幕
月之暗面官宣第一代萬億參數多模態模型Kimi K2.5將於本月底結束服役。該模型今年1月推出並開源,是Kimi迄今最全能模型,採用原生多模態架構,支持視覺與文本輸入、思考/非思考模式、對話與Agent任務,在Agent、代碼、圖像、視頻及通用智能取得開源SOTA。K3將接力,參數規模再上臺階。
光子躍遷亮相BIRTV 2026:以"AI+影像"重構創作範式,三大板塊解碼下一代影像生態
8月19日,BIRTV 2026(北京國際廣播電影電視展覽會)在北京拉開帷幕。在這場匯聚全球廣電與影像領域頂尖技術與創意的盛會上,光子躍遷以"AI+影像"為核心敘事,攜個人智能影像生態重磅亮相,向行業展示了一個由AI驅動、以人為中心的影像未來。與行業展會常見的深色科技風不同,光子躍遷的展臺以純淨白色為主基調,輔以品牌藍色進行點睛點綴,在千篇一律的深色展臺中脫穎而出,傳遞出品牌年輕、活力、面向未來的基因。

諾亦騰機器人發佈 HiPHI,開源 617.5 小時高精度人體運動數據
作者:潞源 責編:潞源 評論: 8 月 23 日消息,諾亦騰機器人在 2026 世界機器人大會期間發佈 HiPHI,這是一套面向人形機器人學習、數字人,以及計算機圖形學領域研究人員和工程師的高精度光學動作捕捉數據集。據報道,該數據集總長 617.