How Much VRAM Does GLM 4.5 Air Need to Run Locally?
See devices that run itGLM 4.5 Air is a MoE model with 106B total parameters and 12B active per token. At Q4 it needs 62GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 7GB of VRAM plus 56GB of RAM. The cheapest device that holds it is the CMP 170HX 64GB (modded), with no used-price data yet, at roughly 89 tokens/s. In offload mode the cheapest card that runs it is the GeForce RTX 2080 Ti, at roughly 12 tokens/s.
GLM 4.5 Air details
VRAM needed for GLM 4.5 Air by quantization and context
Total at 8KMoE: all 106B parameters must stay resident in memory, while speed is set by the 12B active per token.
| Quantization | WeightsGB | Total at 8KGB | Total at 32KGB | Total at 128KGB |
|---|---|---|---|---|
| Q4_K_M | 73GGUF | 61.5 | 65.8 | 83.1 |
| Q5_K_M | 71.5est. | 74 | 78.3 | 95.5 |
| Q8_0 | 109.9est. | 112.3 | 116.6 | 133.9 |
| FP16 | 221GGUF | 209.7 | 214.1 | 231.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 128K limit show a dash.
Which GPUs can run GLM 4.5 Air?
Q4_K_M · 8K context · sorted by eBay used price| Device | VRAMGB | Used price | Est. t/s | Suggested context |
|---|---|---|---|---|
| 64 | —No listings | 89 | 8K | |
| 64 | —No listings | 75.6 | 8K | |
| 72 | —No listings | 83.1 | 32K | |
| 84 | —No listings | 91.9 | 128K | |
| 96 | —No listings | 99.7 | 128K | |
| Mac Studio M4 Max 128GB | 128 | —No listings | 34.3 | 128K |
| Mac Studio M5 Max 128GB | 128 | —No listings | 37.9 | 128K |
| MacBook Pro M4 Max 128GB | 128 | —No listings | 34.3 | 128K |
| MacBook Pro M5 Max 128GB | 128 | —No listings | 37.9 | 128K |
| Mac Studio M3 Ultra 512GB | 512 | —No listings | 48.1 | 128K |
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.
GPUs that run GLM 4.5 Air with experts offloaded to RAM
Expert weights live in system RAM (needs at least 56 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 7 GB at Q4. Speed is bound by RAM bandwidth (estimated at 70 GB/s) and is far slower than a full-VRAM setup.
| Device | VRAMGB | Used price | RAM neededGB | Est. t/s |
|---|---|---|---|---|
| 11 | — | 56 | 11.6 | |
| 16 | — | 56 | 11.8 | |
| 16 | — | 56 | 12 | |
| 16 | — | 56 | 12.1 | |
| 16 | — | 56 | 11.2 | |
| 16 | — | 56 | 11.2 | |
| 16 | — | 56 | 12 | |
| 20 | — | 56 | 11.5 | |
| 24 | — | 56 | 10.4 | |
| 24 | — | 56 | 12.1 | |
| 24 | — | 56 | 12.1 | |
| 24 | — | 56 | 12.3 | |
| 24 | — | 56 | 11.7 | |
| 24 | — | 56 | 11.7 | |
| 32 | — | 56 | 10.9 | |
| 32 | — | 56 | 10.9 | |
| 32 | — | 56 | 11.8 | |
| 32 | — | 56 | 12.5 | |
| 32 | — | 56 | 12.5 | |
| 32 | — | 56 | 12 | |
| 32 | — | 56 | 11.2 | |
| 32 | — | 56 | 11 | |
| 32 | — | 56 | 12 | |
| 32 | — | 56 | 12 | |
| 40 | — | 56 | 12.4 | |
| 40 | — | 56 | 12.4 | |
| 48 | — | 56 | 12.1 | |
| 48 | — | 56 | 11.6 | |
| 48 | — | 56 | 12.3 |
Run GLM 4.5 Air with Ollama, llama.cpp or vLLM
Ollama pulls and runs it in one command; the quantization comes from the official tag.
ollama run glm4.5:air
llama.cpp pulls the GGUF straight from Hugging Face; -c sets the context length.
llama-server -hf unsloth/GLM-4.5-Air-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 zai-org/GLM-4.5-Air
File names follow that week's model-library snapshot; the definitions are in the methodology. Methodology
FAQ
How much VRAM does GLM 4.5 Air need?
At Q4_K_M with an 8K context GLM 4.5 Air needs about 62GB of VRAM; 76GB leaves comfortable headroom.
What is the cheapest GPU that runs GLM 4.5 Air?
The CMP 170HX 64GB (modded): 64GB of VRAM at roughly 89 tokens/s. We have no used-price data for it yet.
Can you run GLM 4.5 Air with Ollama?
Yes: ollama run glm4.5:air.