← All guides

Can I Run Qwen3.8 Flash Next Locally (2026): Yes, on 128GB

Qwen3.8-Flash-Next says 6B active parameters, which sounds like a laptop model. It is not. The file sizes come from a 125B MoE plus a 51B n-gram embedding table, and even the 1-bit GGUF is 67.56 GiB. We read every quant size from Hugging Face, checked llama.cpp support on GitHub, and collected the community speed numbers with their sources.

Bottom Line

  • Yes, you can run it locally, but only on a 128GB box. The smallest GGUF, UD-IQ1_S, is 67.56 GiB. The usual 4-bit pick, UD-IQ4_XS, is 87.25 GiB.
  • “6B active” does not mean 6B of memory. The model has 125B MoE parameters, a 51B n-gram embedding table and a 4B MTP head. You must store all of it.
  • llama.cpp supports it. PR #27742 was merged on 27 August 2026.
  • It is fast once loaded. Only 6B parameters are read per token. Community reports show 16.8 tok/s plain and up to 47.1 tok/s with speculation on Strix Halo.
  • The fact most guides miss: “4-bit” is two different answers at 96GB. UD-IQ4_XS fits in 96GB. UD-Q4_K_XL (103.69 GiB) does not.

What the Model Is

All figures below come from the Qwen model card and the Hugging Face API, read on 17 September 2026.

SpecValue
Parameters125B total, 6B active
Extra weights51B n-gram embedding, 4B MTP
Experts512 total, 10 routed + 1 shared active
Layers48
Context262,144 native, up to 1,000,000 extended
CheckpointBF16, 179,999,981,424 parameters stored
Licenseqwen-community-1.0
Created on Hugging Face24 August 2026

Qwen calls it an experimental preview of the Qwen4 architecture. The model card says the n-gram embedding is “more amenable to offloading than Mixture-of-Experts”. That matters for the hardware choice below.

Every Published Quant, Measured

Sizes come from the Hugging Face file listing for unsloth/Qwen3.8-Flash-Next-GGUF, read on 17 September 2026. We summed multi-part files.

QuantSize (GiB)Size (GB)Smallest machine that holds it
UD-IQ1_S67.5672.5596GB, tight; 128GB comfortable
UD-IQ1_M69.4274.5496GB, tight; 128GB comfortable
UD-Q2_K_XL73.4578.8796GB, tight; 128GB comfortable
UD-IQ3_XXS76.3381.96128GB
UD-Q3_K_XL83.8189.99128GB
UD-IQ4_XS87.2593.68128GB (the common pick)
UD-Q4_K_XL103.69111.33128GB, little context room
UD-Q5_K_XL147.42158.29192GB+
UD-Q6_K_XL157.55169.17192GB+
Q8_0175.30188.23256GB
BF16329.72354.03server only

The same repository also has an MTP file set of 22.93 GiB and a vision projector of about 0.85 GiB. Add the projector if you want image input.

A 24GB or 32GB GPU cannot hold any of these. Even UD-IQ1_S is more than twice the memory of a 32GB card.

Why 6B Active Still Needs 128GB

Active parameters set speed. Total parameters set memory. Most people read only the first number.

Per token, the model reads about 6B parameters. That is why decode is fast on a 128GB box with modest bandwidth. But every expert and every row of the n-gram table must sit somewhere the runtime can reach.

The n-gram table is the part that surprises people. Saiyam Pathak’s Kubesimplify write-up (27 August 2026) says the table expands to about 102 GB at full precision. The GGUF quantizes it, and the same write-up reports about 19% higher perplexity for the UD-IQ1_S build as a result.

One community recipe keeps that table off the GPU. On the NVIDIA developer forum, maci.stgn pins it to CPU with -ot "per_layer_token_embd.weight=CPU" and streams it from NVMe. That lets UD-Q4_K_XL run on a single DGX Spark.

Runtime Support, Checked Today

We searched the llama.cpp repository through the GitHub API on 17 September 2026.

PRWhat it doesState
#27742Adds the qwen4exp architectureMerged 27 Aug 2026
#27836Adds the MTP draft headOpen
#28243Qwen3.8-Flash-Next MTPOpen
#28501Vulkan fix for 512-expert modelsOpen

So a current llama.cpp build loads the model. The MTP speedups in the table below need community branches today. We did not check Ollama support, so do not assume it.

Community Speed Numbers

We did not measure these. Each row names its source. Treat them as single-user reports.

MachineQuantSetupDecode (tok/s)Source
Strix Halo 128GBUD-IQ4_XSNo speculation, 8K context16.8llama.cpp discussion #27950
Strix Halo 128GBUD-IQ4_XSMTP + ngram speculation, file rewrite, 8K47.1same
Strix Halo 128GBUD-IQ4_XSMTP + ngram speculation, new code, 24K25.4same
Strix Halo, Windows 11UD-IQ4_XSMTP sidecar, full serving stack38same thread, user olliehm
DGX SparkUD-IQ1_Sllama.cpp34.5Kubesimplify
DGX SparkUD-Q4_K_XLn-gram table streamed from NVMe~25NVIDIA forum

The Vulkan PR #28501 also reports Strix Halo prefill at 426 → 507 tok/s for an 8K prompt on a Q5_K quant.

One warning from discussion #27950 is worth repeating. An earlier MTP port showed good tok/s while it produced noise above about 1K prompt tokens. Read the output, not only the counter.

To measure your own box, run llama-bench -m <file>.gguf -p 512 -n 128. Then test a real prompt in llama-server at the context length you plan to use.

What to Buy

If you already own a 128GB Strix Halo box or a DGX Spark, download UD-IQ4_XS and try it this week. That is the setup most community reports use.

If you are buying for this model, the two 128GB options are these. Prices are as of September 2026 and move weekly.

MachinePrice (as of September 2026)Why pick it
Strix Halo 128GB boxGMKtec EVO-X2 $3,499.99; Framework Desktop $3,449 (out of stock)Cheapest 128GB path; most community tuning for this model
DGX Spark 128GB$4,699 Founders Edition list; $5,399.99 at NeweggCUDA; the NVMe-streaming recipe for UD-Q4_K_XL

On the AMD side, the Strix Halo 128GB mini PC is the box behind most of the speed numbers above. On the NVIDIA side, the DGX Spark gives you CUDA and the forum recipes.

A 96GB GPU is a narrow fit. An RTX PRO 6000 costs about $15,600-16,000 as of September 2026. It holds UD-IQ4_XS with little context room, and it cannot hold UD-Q4_K_XL. For this model, a 128GB box costs much less.

For the general tier question, see the local LLM estimator or the gear page.

Honest Caveats

  1. We did not measure tok/s. Every speed above is a named community report, on patched or branch builds.
  2. Quant quality is not well measured. The 19% perplexity figure is one report on one quant. We found no KL-divergence table for these files.
  3. We did not check Ollama. Use llama.cpp or Unsloth Desktop, which the Unsloth README names.
  4. Sizes are as of 17 September 2026. Unsloth re-uploads quants when recipes improve.
  5. The model is a preview. Qwen calls it experimental, and the license is qwen-community-1.0, not Apache 2.0. Read it before commercial use.

Sources

See Also

Need OpenClaw fixed live?

Remote rescue sessions for gateway, auth, tunnel, VPS, and model access problems.

See Rescue Session

Read next

Can I Run GLM-5.3-Flash Locally (2026): 128GB Minimum
GLM-5.3-Flash is 321B parameters with 18B active, MIT licensed, and released natively in FP8. The smallest usable GGUF is 86.69 GiB, so 128GB is the floor. And stock llama.cpp still cannot load it — the support PR is open, not merged.
DGX Spark vs Strix Halo for Local LLMs: $4,699 vs $3,500 128GB Boxes
Compare NVIDIA DGX Spark and AMD Strix Halo (Ryzen AI Max+ 395) 128GB mini PCs for local LLMs: bandwidth, CUDA vs ROCm, MoE performance, and pricing.
Best Models to Run on AMD Ryzen AI Max+ 395 Boxes
Best local LLMs for AMD Ryzen AI Max+ 395 (Strix Halo) 128GB mini-PCs in 2026. Qwen3-30B-A3B at ~100 tok/s, gpt-oss 120B at 31-55 tok/s, Llama 4 Scout at ~18 tok/s, dense 70B at ~5 tok/s. Framework Desktop, GMKtec EVO-X2, HP Z2 Mini G1a compared against DGX Spark and Mac Studio — with 2026 prices, which the memory shortage has moved a long way.
Ryzen AI Max+ PRO 495 192GB (2026): Wait or Buy 128GB?
AMD's Gorgon Halo raises unified memory from 128GB to 192GB, but bandwidth rises only 6.6% and the GPU is the same. No 192GB box has a price as of September 2026, while 128GB boxes rose to $3,450-$4,350. What the extra memory runs, and who should wait.