• bitcoinBitcoin(BTC)$77,423.000.30%
  • ethereumEthereum(ETH)$2,452.571.30%
  • tetherTether(USDT)$1.000.00%
  • rippleXRP(XRP)$1.541.50%
  • binancecoinBNB(BNB)$697.180.60%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$95.321.90%
  • tronTRON(TRX)$0.3439560.30%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.00-2.40%
  • HyperliquidHyperliquid(HYPE)$80.204.00%
  • dogecoinDogecoin(DOGE)$0.0939052.50%
  • zcashZcash(ZEC)$854.437.10%
  • RainRain(RAIN)$0.014098-0.30%
  • USDSUSDS(USDS)$1.000.00%
  • leo-tokenLEO Token(LEO)$9.470.80%
  • chainlinkChainlink(LINK)$11.55-1.90%
  • whitebitWhiteBIT Coin(WBT)$72.290.40%
  • cardanoCardano(ADA)$0.2273522.00%
  • moneroMonero(XMR)$424.150.40%
  • stellarStellar(XLM)$0.2016210.00%
  • bitcoin-cashBitcoin Cash(BCH)$276.220.10%
  • CantonCanton(CC)$0.1192732.10%
  • daiDai(DAI)$1.000.00%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.526.00%
  • litecoinLitecoin(LTC)$52.872.90%
  • Ethena USDeEthena USDe(USDE)$1.000.00%
  • USD1USD1(USD1)$1.000.00%
  • hedera-hashgraphHedera(HBAR)$0.0800403.90%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • suiSui(SUI)$0.830.80%
  • avalanche-2Avalanche(AVAX)$7.590.90%
  • shiba-inuShiba Inu(SHIB)$0.0000061.30%
  • Circle USYCCircle USYC(USYC)$1.140.00%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • crypto-com-chainCronos(CRO)$0.058709-2.10%
  • uniswapUniswap(UNI)$4.528.40%
  • tether-goldTether Gold(XAUT)$4,586.300.20%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • nearNEAR Protocol(NEAR)$1.984.80%
  • MemeCoreMemeCore(M)$1.11-1.00%
  • okbOKB(OKB)$110.83-0.70%
  • BittensorBittensor(TAO)$234.104.70%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.80%
  • aaveAave(AAVE)$138.2512.20%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • Pump.funPump.fun(PUMP)$0.00519113.60%
  • pax-goldPAX Gold(PAXG)$4,599.400.40%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.0602381.00%
  • OndoOndo(ONDO)$0.3809512.50%
  • AsterAster(ASTER)$0.672.00%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Meet FreeToken: An Edge-Native MoE Serving Engine that Runs 753B GLM-5.2 on a Single Workstation GPU

August 23, 2026
in AI & Technology
Reading Time: 24 mins read
A A
Meet FreeToken: An Edge-Native MoE Serving Engine that Runs 753B GLM-5.2 on a Single Workstation GPU
ShareShareShareShareShare

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 x86_64 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.

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 B_H − B_P. FreeToken splits each step’s m cache misses accordingly: q* ≈ m × B_P / B_H 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 B_P: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.

YOU MAY ALSO LIKE

The Reasons Siri May Not Work On CarPlay

Building an End-to-End Document Intelligence Pipeline with deepDoctection

Data Check

Reality Check · FlashML FreeToken
INFLATION SCORE 59/100

3Verified

9Self-rep.

4Misleading

0Contradicted

0Not found

Score formula: 8 × misleading + 15 × contradicted + 3 × self-reported, capped at 100. The score is driven by the self-reported column, not by dishonesty — the code went public six days before this audit, so no independent reproduction exists yet.

Claim table · 16 claims

Claim Their number Independent check Verdict & source
Decode, Qwen3.6-35B-A3B BF16, RTX 5090 77–83 tok/s None found SELF-REPORTEDPaper Fig 3
Decode, DeepSeek-V4-Flash MXFP4, RTX 5090 22–25 tok/s None found SELF-REPORTEDPaper Fig 3
Decode speedup vs strongest baseline 1.5–2.3× Recomputes exactly from Fig 3 SELF-REPORTEDPaper §5.2
Decode stability across agent workloads within 12% of W1 None found SELF-REPORTEDPaper §5.2
Worst-case TTFT vs baselines <44 s vs 232 / 179 / 946 s None found SELF-REPORTEDPaper §5.2
4060 laptop “exceeds Codex median 33 tok/s” 39.3 vs 33 TraceLab 33.9 is normalized; Codex pure decode median 57.1, w.avg 61.0 MISLEADINGarXiv:2606.30560
Laptop is “92% of the RTX 4090 rate” 39.3 / 42.9 Arithmetic correct, but 39.3 is NVFP4 and 42.9 is BF16 MISLEADINGPaper Fig 5
GLM-5.2 753B on one RTX PRO 6000 14.9 vs llama.cpp 7.3 None found SELF-REPORTEDPaper §5.3
Cross-hardware lead, five consumer systems 1.3–2.1× Recomputes exactly from Fig 5 SELF-REPORTEDPaper Fig 5
Decode expert miss rate at equal capacity 16% / 39% None found; trace replay, not live serving SELF-REPORTEDPaper Fig 4b
Prefill 8,192-tok chunk; overlap penalty 1.19–1.22 s; 19/25/26% None found SELF-REPORTEDPaper Fig 4a
“753B on a single workstation GPU” framing 1 GPU True for VRAM; hosts carry 512 GiB and 192 GB DRAM MISLEADINGPaper Table 1
Baselines run at 6 CPU threads on rented servers 6 threads KTransformers’ core contribution is many-core AMX CPU kernels MISLEADINGPaper §5.1
“Supports more than 20 MoE models” 20+ Public docs/models.md itemizes ~17 known-good MoE checkpoints SELF-REPORTEDrepo docs
License and distribution Apache-2.0, PyPI v0.1.2 LICENSE file and PyPI JSON API both confirm VERIFIEDGitHub, PyPI
Consumer discrete-GPU install base (Steam basis) ~72% NVIDIA; 4060 Laptop 3.81% Matches Valve June 2026 survey per multiple outlets VERIFIEDValve, Jul 2026
Internal arithmetic across abstract and §5 all ratios Every published ratio recomputes from Figures 3 and 5; zero errors VERIFIEDrecomputed

Flags explained

Denominator games — the Codex comparison mixes two metricsFreeToken reports decode throughput and TTFT separately, so its 39.3 tok/s is a pure decode rate. TraceLab’s 33.9 tok/s is a normalized rate that folds per-step TTFT into decode; the same paper puts Codex’s pure decode median at 57.1 tok/s. Like-for-like, 39.3 does not exceed Codex — it is roughly two thirds of it.

Denominator games — “92% of the RTX 4090 rate” compares 4-bit to 16-bitThe 39.3 tok/s laptop figure is the NVFP4 build; the 42.9 tok/s RTX 4090 figure is BF16. Disclosed in the Figure 5 caption, but the prose states the ratio without the precision caveat.

Denominator games — “single GPU” omits the host requirementThe 753B GLM-5.2 tier sits behind 512 GiB of DDR5 on a Xeon Platinum 8559C; the 284B “gaming desktop” carries 192 GB. One GPU is accurate. One machine at consumer prices is not what those configurations describe.

Settings mismatch — baselines capped at 6 CPU threadsDisclosed and defensible: the paper caps rented dual-socket servers to emulate edge hosts and validates on two real edge machines at full threads. But KTransformers is built around AMX-optimized many-core CPU expert execution, so read its column as “KTransformers on an edge-class host,” not as its ceiling.

Counterweight — the arithmetic is cleanEvery ratio in the abstract and results recomputes correctly: 1.81 / 1.87 / 2.10 / 2.25× for Qwen3.6, 1.92 / 1.84 / 1.52 / 1.65× for DeepSeek-V4-Flash, 2.04× for GLM-5.2. No inflated rounding, no unexplained gaps between figures and prose.

Key takeaways

  • The paper is arithmetically clean — every published ratio recomputes from its own figures.
  • Nothing is independently reproduced yet; 9 of 16 claims are self-reported by necessity, not evasion.
  • Sharpest flag: 39.3 tok/s beats Codex’s normalized 33.9, not its pure decode median of 57.1.
  • “Single GPU” headlines quietly require 192–512 GB of host DRAM.
  • Baseline KTransformers runs at 6 CPU threads, below the many-core AMX config it targets.

Reality Check by Marktechpost · verified Aug 23, 2026

Key Takeaways

  • FreeToken splits MoE cache misses between PCIe fills and CPU execution using measured bandwidths, not a fixed offload rule.
  • Expert output stays bit-exact — no router changes, no expert substitution, no precision relaxation.
  • 1.5–2.3× decode throughput over llama.cpp, Ollama and KTransformers, with tail TTFT under 44 s.
  • 35B at 39.3 tok/s on an 8 GB laptop GPU; 753B GLM-5.2 on one workstation GPU.
  • Apache-2.0, on PyPI and as a Windows/Linux desktop app — deployable this afternoon.

Check out the PAPER, GITHUB REPO and PROJECT. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.

Credit: Source link

ShareTweetSendSharePin

Related Posts

The Reasons Siri May Not Work On CarPlay
AI & Technology

The Reasons Siri May Not Work On CarPlay

August 23, 2026
Building an End-to-End Document Intelligence Pipeline with deepDoctection
AI & Technology

Building an End-to-End Document Intelligence Pipeline with deepDoctection

August 23, 2026
The Developer’s Guide to NeMo Guardrails for Enterprise AI Safety
AI & Technology

The Developer’s Guide to NeMo Guardrails for Enterprise AI Safety

August 22, 2026
If Waymo Cars Are Level 4 Automation, What Does It Take To Be A Level 5?
AI & Technology

If Waymo Cars Are Level 4 Automation, What Does It Take To Be A Level 5?

August 22, 2026
Next Post
Treasury Buybacks: America Has Three Doors, And None Solve The Problem (NYSEARCA:USD)

Treasury Buybacks: America Has Three Doors, And None Solve The Problem (NYSEARCA:USD)

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
U.S. military denies supply crisis on Navy ship

U.S. military denies supply crisis on Navy ship

August 22, 2026
Anthropic’s Annualized Revenue Tops  Billion

Anthropic’s Annualized Revenue Tops $65 Billion

August 20, 2026
Major update for Ken Griffin’s 350 Park Ave. tower plans

Major update for Ken Griffin’s 350 Park Ave. tower plans

August 16, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!