How Much VRAM Does Qwen3 8B Need to Run Locally?
See devices that run itQwen3 8B is a dense model with 8.2B parameters. At Q4 it needs at least 7GB of VRAM, and 12GB is the comfortable amount for an 8K context. The cheapest device that holds it is the GeForce RTX 4080, with no used-price data yet, at roughly 89.1 tokens/s.
Qwen3 8B details
VRAM needed for Qwen3 8B by quantization and context
Total at 8K| Quantization | WeightsGB | Total at 8KGB | Total at 32KGB | Total at 128KGB |
|---|---|---|---|---|
| Q4_K_M | 5GGUF | 6.7 | 10.1 | — |
| Q5_K_M | 5.9GGUF | 7.7 | 11 | — |
| Q8_0 | 8.7GGUF | 10.6 | 14 | — |
| FP16 | 16est. | 18.1 | 21.5 | — |
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 40K limit show a dash.
Which GPUs can run Qwen3 8B?
Q4_K_M · 8K context · sorted by eBay used price| Device | VRAMGB | Used price | Est. t/s | Suggested context |
|---|---|---|---|---|
| 16 | —No listings | 89.1 | 32K | |
| 16 | —No listings | 109.4 | 32K | |
| 16 | —No listings | 116.5 | 32K | |
| 16 | —No listings | 58.3 | 32K | |
| 20 | —No listings | 72.1 | 32K | |
| 24 | —No listings | 38 | 32K | |
| 24 | —No listings | 113.9 | 32K | |
| 24 | —No listings | 121.8 | 32K | |
| 24 | —No listings | 157.2 | 32K | |
| 24 | —No listings | 85.5 | 32K | |
| 24 | —No listings | 83.9 | 32K | |
| 32 | —No listings | 50.2 | 32K | |
| 32 | —No listings | 50.2 | 32K | |
| 32 | —No listings | 91.3 | 32K | |
| 32 | —No listings | 201.2 | 32K | |
| 32 | —No listings | 201.2 | 32K | |
| 32 | —No listings | 107.4 | 32K | |
| 32 | —No listings | 58.3 | 32K | |
| 32 | —No listings | 52.7 | 32K | |
| 32 | —No listings | 109.4 | 32K | |
| 40 | —No listings | 178.4 | 32K | |
| 48 | —No listings | 121.8 | 32K | |
| 48 | —No listings | 77.5 | 32K | |
| 48 | —No listings | 157.2 | 32K | |
| 64 | —No listings | 139.2 | 32K | |
| 72 | —No listings | 157.2 | 32K | |
| Mac Studio M4 Max 128GB | 128 | —No listings | 54.9 | 32K |
| Mac Studio M3 Ultra 256GB | 256 | —No listings | 80.6 | 32K |
| Mac Studio M3 Ultra 512GB | 512 | —No listings | 80.6 | 32K |
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.
Run Qwen3 8B with Ollama, llama.cpp or vLLM
Ollama pulls and runs it in one command; the quantization comes from the official tag.
ollama run qwen3:8b
llama.cpp pulls the GGUF straight from Hugging Face; -c sets the context length.
llama-server -hf Qwen/Qwen3-8B-GGUF:Q4_K_M -c 8192
vLLM serves the original-precision weights, which needs far more memory than GGUF and usually more than one GPU.
vllm serve Qwen/Qwen3-8B
File names follow that week's model-library snapshot; the definitions are in the methodology. Methodology
FAQ
How much VRAM does Qwen3 8B need?
At Q4_K_M with an 8K context Qwen3 8B needs about 7GB of VRAM; 12GB leaves comfortable headroom.
What is the cheapest GPU that runs Qwen3 8B?
The GeForce RTX 4080: 16GB of VRAM at roughly 89.1 tokens/s. We have no used-price data for it yet.
Can you run Qwen3 8B with Ollama?
Yes: ollama run qwen3:8b.