How Much VRAM Does Qwen3 32B Need to Run Locally?
See devices that run itQwen3 32B is a dense model with 32.8B parameters. At Q4 it needs at least 22GB of VRAM, and 28GB is the comfortable amount for an 8K context. The cheapest device that holds it is the Arc Pro B60, with no used-price data yet, at roughly 10.3 tokens/s.
Qwen3 32B details
VRAM needed for Qwen3 32B by quantization and context
Total at 8K| Quantization | WeightsGB | Total at 8KGB | Total at 32KGB | Total at 128KGB |
|---|---|---|---|---|
| Q4_K_M | 19.8GGUF | 21.3 | 27.3 | — |
| Q5_K_M | 23.2GGUF | 25.1 | 31.1 | — |
| Q8_0 | 34.8GGUF | 37 | 43 | — |
| FP16 | 64.1est. | 67.1 | 73.1 | — |
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 32B?
Q4_K_M · 8K context · sorted by eBay used price| Device | VRAMGB | Used price | Est. t/s | Suggested context |
|---|---|---|---|---|
| 24 | —No listings | 10.3 | 8K | |
| 24 | —No listings | 32.4 | 8K | |
| 24 | —No listings | 34.9 | 8K | |
| 24 | —No listings | 46.1 | 8K | |
| 24 | —No listings | 23.9 | 8K | |
| 24 | —No listings | 23.5 | 8K | |
| 32 | —No listings | 13.8 | 32K | |
| 32 | —No listings | 13.8 | 32K | |
| 32 | —No listings | 25.7 | 32K | |
| 32 | —No listings | 60.7 | 32K | |
| 32 | —No listings | 60.7 | 32K | |
| 32 | —No listings | 30.5 | 32K | |
| 32 | —No listings | 16.1 | 32K | |
| 32 | —No listings | 14.5 | 32K | |
| 32 | —No listings | 31.1 | 32K | |
| 32 | —No listings | 31.2 | 32K | |
| 40 | —No listings | 53 | 32K | |
| 40 | —No listings | 53.1 | 32K | |
| 48 | —No listings | 34.9 | 32K | |
| 48 | —No listings | 21.6 | 32K | |
| 48 | —No listings | 46.1 | 32K | |
| 64 | —No listings | 51 | 32K | |
| 64 | —No listings | 40.3 | 32K | |
| 72 | —No listings | 46.1 | 32K | |
| 84 | —No listings | 53.4 | 32K | |
| 96 | —No listings | 60.7 | 32K | |
| Mac Studio M4 Max 128GB | 128 | —No listings | 15.1 | 32K |
| Mac Studio M5 Max 128GB | 128 | —No listings | 16.9 | 32K |
| MacBook Pro M4 Max 128GB | 128 | —No listings | 15.1 | 32K |
| MacBook Pro M5 Max 128GB | 128 | —No listings | 16.9 | 32K |
| Mac Studio M3 Ultra 512GB | 512 | —No listings | 22.5 | 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 32B with Ollama, llama.cpp or vLLM
Ollama pulls and runs it in one command; the quantization comes from the official tag.
ollama run qwen3:32b
llama.cpp pulls the GGUF straight from Hugging Face; -c sets the context length.
llama-server -hf Qwen/Qwen3-32B-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-32B
File names follow that week's model-library snapshot; the definitions are in the methodology. Methodology
FAQ
How much VRAM does Qwen3 32B need?
At Q4_K_M with an 8K context Qwen3 32B needs about 22GB of VRAM; 28GB leaves comfortable headroom.
What is the cheapest GPU that runs Qwen3 32B?
The Arc Pro B60: 24GB of VRAM at roughly 10.3 tokens/s. We have no used-price data for it yet.
Can you run Qwen3 32B with Ollama?
Yes: ollama run qwen3:32b.