GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropGeForce RTX 5070 Ti-6.3%Biggest 24h riseRTX PRO 4000 Blackwell+7.7%Data updated

How to Deploy GLM 5.3 Locally

GLM 5.3 is a MoE model with 744B total parameters and 40B active per token. At Q4 it needs 445GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 41GB of VRAM plus 406GB of RAM. The cheapest card that runs it today is the Mac Studio M3 Ultra 512GB at about $22,000, at roughly 11.5 tokens/s. In offload mode the cheapest card that runs it is the Radeon PRO W7900, at roughly 3 tokens/s.

GLM 5.3 details

Launch dateAug 25, 2026
Hugging Face repozai-org/GLM-5.3
Revision
ArchitectureMoE
Ollama tag
Min VRAM at Q4445 GB · Q4_K_M · 8K
Experts offloaded41 GB VRAM + 406 GB RAM
Parameters744B
MoE40B
Layers78
Hidden size6,144
KV heads64
Head dim192
Max context1M
VendorZ.ai / Zhipu AI

How much VRAM does GLM 5.3 need for local deployment?

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

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit228.5GGUF204.9292.6643.6
2-bit253.9GGUF306.7394.5745.5
3-bit343GGUF386.7474.5825.5
4-bit467.3GGUF445532.7883.7
5-bit562.5GGUF532.3620971
8-bit801.4GGUF801.5889.21,240.2
FP161,508GGUF1,485.31,573.11,924.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 1M 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.

DeviceVRAMGBPriceEst. t/sSuggested context
Mac Studio M3 Ultra 512GB512$22,00011 listings11.58K

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 GLM 5.3 with CPU/GPU offloading

eBay

Expert weights live in system RAM (needs at least 406 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 41 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
Radeon PRO W790048$3,4954063.1
Instinct MI21064$5,0464063.4
MacBook Pro M4 Max 128GB128$5,5494062.9
Mac Studio M4 Max 128GB128$6,5474062.9
MacBook Pro M5 Max 128GB128$7,2504062.9
RTX PRO 6000 Blackwell96$16,9854063.5
GeForce RTX 4090 48GB484063.3
RTX PRO 5000 Blackwell 48GB484063.4
CMP 170HX 64GB644063.4
RTX PRO 5000 Blackwell 72GB724063.4
RTX PRO 6000D844063.4
DGX Spark 128GB1284062.5
Mac Studio M5 Max 128GB1284062.9
Ryzen AI Max+ 395 128GB1284062.2

Deploy GLM 5.3 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/GLM-5.3-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 zai-org/GLM-5.3

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

FAQ

How much VRAM does GLM 5.3 need?

At Q4_K_M with an 8K context GLM 5.3 needs about 445GB of VRAM; 536GB leaves comfortable headroom.

What is the cheapest GPU that runs GLM 5.3?

The Mac Studio M3 Ultra 512GB: 512GB of VRAM, currently about $22,000, at roughly 11.5 tokens/s.

Can you run GLM 5.3 with Ollama?

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