GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropBiggest 24h riseData updated

How to Deploy Kimi K3 Locally

Kimi K3 is a MoE model with 2,800B total parameters and 104B active per token. At Q4 it needs 1,562GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 33GB of VRAM plus 1,531GB 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 Ryzen AI Max+ 395 128GB, at roughly 1 tokens/s.

Kimi K3 details

Launch dateJun 13, 2026
Hugging Face repomoonshotai/Kimi-K3
Revision
ArchitectureMoE
Ollama tag
Min VRAM at Q41,562 GB · Q4_K_M · 8K
Experts offloaded33 GB VRAM + 1,531 GB RAM
Parameters2,800B
MoE104B
Layers93
Hidden size7,168
KV heads96
Head dim192
Max context1M
VendorMoonshot AI

How much VRAM does Kimi K3 need for local deployment?

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

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit648.9GGUF658.4659661.5
2-bit861.3GGUF1,041.71,042.31,044.8
3-bit1,341.7est.1,342.91,343.51,346
4-bit1,508.7GGUF1,561.91,562.61,565.1
5-bit1,889.3est.1,890.51,891.11,893.7
8-bit1,561.2GGUF2,903.62,904.22,906.7
FP165,476.2est.5,477.45,4785,480.6

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.

Which GPUs can run Kimi K3?

AmazonJP

No single card in the database fits Kimi K3: it needs at least 1,562GB of VRAM at Q4_K_M with an 8K context.

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

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

Recommended GPUs for Kimi K3 with CPU/GPU offloading

AmazonJP

Expert weights live in system RAM (needs at least 1,531 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 33 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
Ryzen AI Max+ 395 128GB128$3,9131,5311.2
DGX Spark 128GB128$8,2231,5311.4
A100 40GB PCIe401,5311.7
CMP 170HX 40GB401,5311.7
GeForce RTX 4090 48GB481,5311.6
Radeon PRO W7900481,5311.5
RTX PRO 5000 Blackwell 48GB481,5311.6
CMP 170HX 64GB641,5311.7
Instinct MI210641,5311.6
RTX PRO 5000 Blackwell 72GB721,5311.6
RTX PRO 6000D841,5311.7
RTX PRO 6000 Blackwell961,5311.7
Mac Studio M4 Max 128GB1281,5311.5
Mac Studio M5 Max 128GB1281,5311.5
MacBook Pro M4 Max 128GB1281,5311.5
MacBook Pro M5 Max 128GB1281,5311.5
Mac Studio M3 Ultra 512GB5121,5311.6

Deploy Kimi K3 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/Kimi-K3-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 moonshotai/Kimi-K3

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

FAQ

How much VRAM does Kimi K3 need?

At Q4_K_M with an 8K context Kimi K3 needs about 1,562GB of VRAM; 1,876GB leaves comfortable headroom.

What is the cheapest GPU that runs Kimi K3?

No single card in the database fits Kimi K3; it needs multiple GPUs or a Mac Studio's unified memory.

Can you run Kimi K3 with Ollama?

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