GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropBiggest 24h riseData updated

How to Deploy Qwen3.8 Flash Next Locally

Qwen3.8 Flash Next is a MoE model with 176B total parameters and 6B active per token. At Q4 it needs 100GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 4GB of VRAM plus 97GB of RAM. The cheapest card that runs it today is the Ryzen AI Max+ 395 128GB at about $3,913, at roughly 31.8 tokens/s. In offload mode the cheapest card that runs it is the Tesla V100 16GB, at roughly 22 tokens/s.

Qwen3.8 Flash Next details

Launch dateAug 24, 2026
Hugging Face repoQwen/Qwen3.8-Flash-Next
Revision
ArchitectureMoE
Ollama tag
Min VRAM at Q4100 GB · Q4_K_M · 8K
Experts offloaded4 GB VRAM + 97 GB RAM
Parameters176B
MoE6B
Layers48
Hidden size2,560
KV heads2
Head dim256
Max context256K
VendorAlibaba

How much VRAM does Qwen3.8 Flash Next need for local deployment?

MoE: all 176B parameters must stay resident in memory, while speed is set by the 6B active per token.

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit74.5GGUF42.543.145.3
2-bit78.9GGUF66.667.269.4
3-bit90GGUF85.586.188.3
4-bit111.3GGUF99.399.9102.1
5-bit158.3GGUF119.9120.5122.8
8-bit188.2GGUF183.6184.2186.4
FP16354GGUF345.4346348.2

Total = weights + KV cache (FP16) + 1GB runtime overhead. Weights marked GGUF are measured file sizes from the repository; the rest are estimated from bytes per parameter. Contexts beyond this model's 256K limit show a dash. Each tier takes whichever file of that bit width the repository has, preferring unsloth dynamic quants, so the exact file name varies by model.

Which GPUs can run Qwen3.8 Flash Next?

AmazonJP
DeviceVRAMGBPriceEst. t/sSuggested context
Ryzen AI Max+ 395 128GB128$3,9136 listings31.8128K
DGX Spark 128GB128$8,2233 listings44.7128K
Mac Studio M4 Max 128GB128No listings63.7128K
Mac Studio M5 Max 128GB128No listings69.4128K
MacBook Pro M4 Max 128GB128No listings63.7128K
MacBook Pro M5 Max 128GB128No listings69.4128K
Mac Studio M3 Ultra 512GB512No listings84.7128K

Fits when weights + KV cache + runtime overhead is at or below usable memory, single card. "Offload" on MoE models means it runs with expert weights in system RAM (only attention layers and KV cache stay in VRAM); that speed assumes 70 GB/s RAM bandwidth. The context column is the largest tier that fits.

Recommended GPUs for Qwen3.8 Flash Next with CPU/GPU offloading

AmazonJP

Expert weights live in system RAM (needs at least 97 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 4 GB at Q4. Speed is bound by RAM bandwidth (estimated at 70 GB/s) and is far slower than a full-VRAM setup.

DeviceVRAMGBPriceRAM neededGBEst. t/s
Tesla V100 16GB16$6599721.8
Radeon RX 9070 XT16$8849720.7
GeForce RTX 5060 Ti 16GB16$9249720.6
GeForce RTX 507012$9569721.4
Radeon RX 7800 XT16$9669720.6
Tesla V100 32GB32$1,1419721.8
Arc Pro B6024$1,1649719.6
Radeon RX 7900 XT20$1,2449721.1
Radeon RX 6950 XT16$1,4049720.5
GeForce RTX 5070 Ti16$1,5769721.8
Radeon RX 7900 XTX24$1,7389721.4
GeForce RTX 508016$1,8689721.9
Arc Pro B7032$2,0749720.3
GeForce RTX 408016$2,1879721.5
Radeon AI PRO R970032$2,2449720.7
GeForce RTX 309024$2,5209721.8
RTX PRO 4000 Blackwell24$3,9569721.4
GeForce RTX 409024$4,9059721.9
GeForce RTX 509032$7,4899722.4
GeForce RTX 2080 Ti 22GB229721.2
GeForce RTX 5090 D V2249722.2
Arc Pro B65329720.3
GeForce RTX 4080 SUPER 32GB329721.5
GeForce RTX 5090 D329722.4
Instinct MI100329721.8
Instinct MI50 32GB329721.5
Radeon PRO W7800329720.5
RTX PRO 4500 Blackwell329721.8
A100 40GB PCIe409722.3
CMP 170HX 40GB409722.3
GeForce RTX 4090 48GB489721.9
Radeon PRO W7900489721.2
RTX PRO 5000 Blackwell 48GB489722.2
CMP 170HX 64GB649722.3
Instinct MI210649722.1
RTX PRO 5000 Blackwell 72GB729722.2
RTX PRO 6000D849722.3
RTX PRO 6000 Blackwell969722.4

Deploy Qwen3.8 Flash Next locally with Ollama, llama.cpp or vLLM

Ollama

The Ollama library has no official tag for it yet.

llama.cpp

llama.cpp pulls the GGUF straight from Hugging Face; -c sets the context length.

llama-server -hf unsloth/Qwen3.8-Flash-Next-GGUF:Q4_K_M -c 8192
vLLM

vLLM serves the original-precision weights, which needs far more memory than GGUF and usually more than one GPU.

vllm serve Qwen/Qwen3.8-Flash-Next

File names follow that week's model-library snapshot; the definitions are in the methodology. Methodology

FAQ

How much VRAM does Qwen3.8 Flash Next need?

At Q4_K_M with an 8K context Qwen3.8 Flash Next needs about 100GB of VRAM; 120GB leaves comfortable headroom.

What is the cheapest GPU that runs Qwen3.8 Flash Next?

The Ryzen AI Max+ 395 128GB: 128GB of VRAM, currently about $3,913, at roughly 31.8 tokens/s.

Can you run Qwen3.8 Flash Next with Ollama?

Not yet: the Ollama library has no official tag for it. You can load the GGUF with llama.cpp instead.