GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropMac Studio M4 Max 128GB-6.7%Biggest 24h riseGeForce RTX 5070 Ti+21.0%Data updated

How to Deploy Qwen3.8 2.4T A95B Locally

Qwen3.8 2.4T A95B is a MoE model with 2,446B total parameters and 95B active per token. At Q4 it needs 1,366GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 30GB of VRAM plus 1,337GB of RAM. No single card in the database fits it; it needs multiple GPUs or the unified memory of a Mac Studio. In offload mode the cheapest card that runs it is the Instinct MI50 32GB, at roughly 2 tokens/s.

Qwen3.8 2.4T A95B details

Launch dateAug 8, 2026
Hugging Face repoQwen/Qwen3.8-2.4T-A95B
Revision
ArchitectureMoE
Ollama tag
Min VRAM at Q41,366 GB · Q4_K_M · 8K
Experts offloaded30 GB VRAM + 1,337 GB RAM
Parameters2,446B
MoE95B
Layers92
Hidden size8,192
KV heads4
Head dim256
Max context256K
VendorAlibaba

How much VRAM does Qwen3.8 2.4T A95B need for local deployment?

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

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit564GGUF575.8577.9586.6
2-bit730.7GGUF910.6912.8921.4
3-bit955.5GGUF1,173.81,175.91,184.5
4-bit1,310.9GGUF1,365.11,367.31,375.9
5-bit1,650.4est.1,652.11,654.31,662.9
8-bit2,600.2GGUF2,537.12,539.32,547.9
FP164,893.2GGUF4,785.64,787.74,796.3

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 2.4T A95B?

Xianyu

No single card in the database fits Qwen3.8 2.4T A95B: it needs at least 1,366GB of VRAM at Q4_K_M with an 8K context.

A multi-GPU build needs at least 1,366GB of VRAM in total.

None of the unified-memory machines in the database fit it either.

Recommended GPUs for Qwen3.8 2.4T A95B with CPU/GPU offloading

Xianyu

Expert weights live in system RAM (needs at least 1,337 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 30 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
Instinct MI50 32GB32$4051,3371.7
Tesla V100 32GB32$4761,3371.7
Arc Pro B7032$1,4651,3371.5
Radeon AI PRO R970032$1,6431,3371.6
CMP 170HX 40GB40$1,6801,3371.7
Radeon PRO W780032$1,8441,3371.5
CMP 170HX 64GB64$2,0891,3371.7
Instinct MI21064$2,7511,3371.7
Radeon PRO W790048$3,2711,3371.6
RTX PRO 4500 Blackwell32$3,8441,3371.7
GeForce RTX 4090 48GB48$3,9551,3371.7
A100 40GB PCIe40$4,6021,3371.7
Mac Studio M4 Max 128GB128$4,7881,3371.6
DGX Spark 128GB128$4,8321,3371.4
GeForce RTX 5090 D32$4,8921,3371.8
MacBook Pro M4 Max 128GB128$5,2641,3371.6
Mac Studio M5 Max 128GB128$5,8811,3371.6
GeForce RTX 509032$6,5131,3371.8
RTX PRO 5000 Blackwell 48GB48$6,9591,3371.7
MacBook Pro M5 Max 128GB128$8,1481,3371.6
RTX PRO 5000 Blackwell 72GB72$9,6651,3371.7
RTX PRO 6000D84$10,1111,3371.7
RTX PRO 6000 Blackwell96$18,4221,3371.8
Mac Studio M3 Ultra 512GB512$19,3151,3371.6
Arc Pro B65321,3371.5
GeForce RTX 4080 SUPER 32GB321,3371.7
Instinct MI100321,3371.7
Ryzen AI Max+ 395 128GB1281,3371.3

Deploy Qwen3.8 2.4T A95B 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-2.4T-A95B-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-2.4T-A95B

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

FAQ

How much VRAM does Qwen3.8 2.4T A95B need?

At Q4_K_M with an 8K context Qwen3.8 2.4T A95B needs about 1,366GB of VRAM; 1,640GB leaves comfortable headroom.

What is the cheapest GPU that runs Qwen3.8 2.4T A95B?

No single card in the database fits Qwen3.8 2.4T A95B; it needs multiple GPUs or a Mac Studio's unified memory.

Can you run Qwen3.8 2.4T A95B with Ollama?

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