GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropMac Studio M4 Max 128GB-6.7%Biggest 24h riseGeForce RTX 5070 Ti+21.0%Data updated

How to Deploy Hy3 Locally

Hy3 is a MoE model with 295B total parameters and 21B active per token. At Q4 it needs 168GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 10GB of VRAM plus 160GB of RAM. The cheapest card that runs it today is the Mac Studio M3 Ultra 512GB at about $19,315, at roughly 30 tokens/s. In offload mode the cheapest card that runs it is the Tesla V100 16GB, at roughly 7 tokens/s.

Hy3 details

Launch dateJul 6, 2026
Hugging Face repotencent/Hy3
Revision
LicenseApache-2.0
ArchitectureMoE
Ollama tag
Min VRAM at Q4168 GB · Q4_K_M · 8K
Experts offloaded10 GB VRAM + 160 GB RAM
Parameters295B
MoE21B
Layers80
Hidden size4,096
KV heads8
Head dim128
Max context256K
VendorTencent

How much VRAM does Hy3 need for local deployment?

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

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit71.1GGUF72.780.2110.2
2-bit107.2GGUF113.1120.6150.6
3-bit143.1GGUF144.9152.4182.4
4-bit182.2GGUF167.9175.4205.4
5-bit212.8GGUF202.5210240
8-bit317.7GGUF309.3316.8346.8
FP16577est.580.5588618

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 256K 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$19,3156 listings30128K

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

Xianyu

Expert weights live in system RAM (needs at least 160 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 10 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
Tesla V100 16GB16$1311606.5
GeForce RTX 2080 Ti 22GB22$3871606.3
Instinct MI50 32GB32$4051606.4
Radeon RX 6950 XT16$4461606.1
Radeon RX 7800 XT16$4611606.1
Tesla V100 32GB32$4761606.5
Radeon RX 7900 XT20$6391606.3
GeForce RTX 5060 Ti 16GB16$6971606.1
Arc Pro B6024$7841605.7
Radeon RX 7900 XTX24$8621606.4
Radeon RX 9070 XT16$9071606.1
GeForce RTX 507012$9181606.4
GeForce RTX 408016$1,1521606.4
GeForce RTX 309024$1,2041606.6
Arc Pro B7032$1,4651606
GeForce RTX 5070 Ti16$1,4721606.5
Radeon AI PRO R970032$1,6431606.1
CMP 170HX 40GB40$1,6801606.7
Radeon PRO W780032$1,8441606.1
GeForce RTX 508016$1,8511606.6
CMP 170HX 64GB64$2,0891606.7
RTX PRO 4000 Blackwell24$2,3271606.4
Instinct MI21064$2,7511606.6
Radeon PRO W790048$3,2711606.4
GeForce RTX 409024$3,4941606.6
GeForce RTX 5090 D V224$3,5541606.7
RTX PRO 4500 Blackwell32$3,8441606.5
GeForce RTX 4090 48GB48$3,9551606.6
A100 40GB PCIe40$4,6021606.7
Mac Studio M4 Max 128GB128$4,7881606.1
DGX Spark 128GB128$4,8321605.7
GeForce RTX 5090 D32$4,8921606.8
MacBook Pro M4 Max 128GB128$5,2641606.1
Mac Studio M5 Max 128GB128$5,8811606.2
GeForce RTX 509032$6,5131606.8
RTX PRO 5000 Blackwell 48GB48$6,9591606.7
MacBook Pro M5 Max 128GB128$8,1481606.2
RTX PRO 5000 Blackwell 72GB72$9,6651606.7
RTX PRO 6000D84$10,1111606.7
RTX PRO 6000 Blackwell96$18,4221606.8
Arc Pro B65321606
GeForce RTX 4080 SUPER 32GB321606.4
Instinct MI100321606.5
Ryzen AI Max+ 395 128GB1281605.2

Deploy Hy3 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 bartowski/Hy3-GGUF:Q4_K_M --jinja -c 8192
vLLM

Follow the deployment guide to prepare the required runtime and hardware.

# Switch to trtllm backend to work-around mnnvl workspace size issue.
export VLLM_FLASHINFER_ALLREDUCE_BACKEND=trtllm
vllm serve tencent/Hy3 \
  --tensor-parallel-size 8 \
  --speculative-config.method mtp \
  --speculative-config.num_speculative_tokens 2 \
  --tool-call-parser hy_v3 \
  --reasoning-parser hy_v3 \
  --enable-auto-tool-choice \
  --port 8000 \
  --served-model-name hy3

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

FAQ

How much VRAM does Hy3 need?

At Q4_K_M with an 8K context Hy3 needs about 168GB of VRAM; 204GB leaves comfortable headroom.

What is the cheapest GPU that runs Hy3?

The Mac Studio M3 Ultra 512GB: 512GB of VRAM, currently about $19,315, at roughly 30 tokens/s.

Can you run Hy3 with Ollama?

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