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 Hy4 preview Locally

Hy4 preview is a MoE model with 770B total parameters and 49B active per token. At Q4 it needs 431GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 18GB of VRAM plus 415GB of RAM. The cheapest card that runs it today is the Mac Studio M3 Ultra 512GB at about $19,315, at roughly 15 tokens/s. In offload mode the cheapest card that runs it is the GeForce RTX 2080 Ti 22GB, at roughly 3 tokens/s.

Hy4 preview details

Launch dateAug 28, 2026
Hugging Face repotencent/Hy4-preview
Revision
LicenseApache-2.0
ArchitectureMoE
Ollama tag
Min VRAM at Q4431 GB · Q4_K_M · 8K
Experts offloaded18 GB VRAM + 415 GB RAM
Parameters770B
MoE49B
Layers78
Hidden size6,144
KV heads8
Head dim64
Max context1M
VendorTencent

How much VRAM does Hy4 preview need for local deployment?

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

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit235.4GGUF182.4184.5192.7
2-bit286.1est.287.8289.9298.1
3-bit369est.370.6372.7380.9
4-bit467.3GGUF430.9432.9441.2
5-bit519.6est.521.2523.3531.5
8-bit798.2est.799.8801.9810.1
FP161,505.9est.1,507.61,509.71,517.9

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 Hy4 preview?

Xianyu
DeviceVRAMGBPriceEst. t/sSuggested context
Mac Studio M3 Ultra 512GB512$19,3156 listings15128K

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

Xianyu

Expert weights live in system RAM (needs at least 415 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 18 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
GeForce RTX 2080 Ti 22GB22$3874153.2
Instinct MI50 32GB32$4054153.3
Tesla V100 32GB32$4764153.4
Radeon RX 7900 XT20$6394153.2
Arc Pro B6024$7844152.9
Radeon RX 7900 XTX24$8624153.3
GeForce RTX 309024$1,2044153.4
Arc Pro B7032$1,4654153
Radeon AI PRO R970032$1,6434153.1
CMP 170HX 40GB40$1,6804153.5
Radeon PRO W780032$1,8444153.1
CMP 170HX 64GB64$2,0894153.5
RTX PRO 4000 Blackwell24$2,3274153.3
Instinct MI21064$2,7514153.4
Radeon PRO W790048$3,2714153.2
GeForce RTX 409024$3,4944153.4
GeForce RTX 5090 D V224$3,5544153.4
RTX PRO 4500 Blackwell32$3,8444153.4
GeForce RTX 4090 48GB48$3,9554153.4
A100 40GB PCIe40$4,6024153.5
Mac Studio M4 Max 128GB128$4,7884153.1
DGX Spark 128GB128$4,8324152.8
GeForce RTX 5090 D32$4,8924153.5
MacBook Pro M4 Max 128GB128$5,2644153.1
Mac Studio M5 Max 128GB128$5,8814153.1
GeForce RTX 509032$6,5134153.5
RTX PRO 5000 Blackwell 48GB48$6,9594153.4
MacBook Pro M5 Max 128GB128$8,1484153.1
RTX PRO 5000 Blackwell 72GB72$9,6654153.4
RTX PRO 6000D84$10,1114153.5
RTX PRO 6000 Blackwell96$18,4224153.5
Arc Pro B65324153
GeForce RTX 4080 SUPER 32GB324153.3
Instinct MI100324153.3
Ryzen AI Max+ 395 128GB1284152.6

Deploy Hy4 preview locally with Ollama, llama.cpp or vLLM

Ollama

The Ollama library has no official tag for it yet.

llama.cpp

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

./build-cuda/bin/llama-cli -m Hy4-preview-Q4_K_M.gguf -ngl 99 -c 8192 --jinja -st -f prompt.txt
vLLM

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

docker run --gpus all \
  -p 8000:8000 \
  --ipc=host \
  -v ~/.cache/huggingface:/root/.cache/huggingface \
  vllm/vllm-openai:hy4-preview tencent/Hy4-preview-FP8 \
    --tensor-parallel-size 8 \
    --speculative-config '{"num_speculative_tokens":3,"method":"mtp"}' \
    --attention-backend FLASHMLA_SPARSE \
    --tool-call-parser hy_v4 \
    --reasoning-parser hy_v4 \
    --enable-auto-tool-choice \
    --port 8000 \
    --served-model-name hy4-preview

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

FAQ

How much VRAM does Hy4 preview need?

At Q4_K_M with an 8K context Hy4 preview needs about 431GB of VRAM; 520GB leaves comfortable headroom.

What is the cheapest GPU that runs Hy4 preview?

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

Can you run Hy4 preview with Ollama?

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