canirunthismodel

How much VRAM do you need to run AI models locally?

The memory an LLM needs is driven by its parameter count and precision. As a rule of thumb, a model needs about 2 GB per billion parameters at FP16, 1 GB/B at 8-bit, and ~0.6 GB/B at 4-bit — plus ~20% runtime overhead. Here are the numbers for every common size, and what each GPU can run.

VRAM required by model size

Model sizeFP168-bit (Q8)4-bit (Q4)3-bit (Q3)
1B3.4 GB2.2 GB1.7 GB1.5 GB
3B8.2 GB4.6 GB3.0 GB2.5 GB
7B18 GB9.4 GB5.6 GB4.5 GB
8B20 GB11 GB6.3 GB5.0 GB
13B32 GB17 GB9.6 GB7.6 GB
14B35 GB18 GB10 GB8.1 GB
34B83 GB42 GB23 GB18 GB
8×7B (MoE, 47B)114 GB57 GB32 GB25 GB
70B169 GB85 GB47 GB36 GB
405B973 GB487 GB268 GB205 GB

Includes ~20% runtime overhead. MoE models (e.g. 8×7B) load all experts, so size by total parameters, not active ones.

What each GPU can run (at 4-bit)

GPUVRAM7B13B34B70BMax (~4-bit)
RTX 40608 GB~10B
RTX 3060 (12GB)12 GB~16B
RTX 4070 Super12 GB~16B
RTX 4080 Super16 GB~21B
RTX 409024 GB~32B
RTX 509032 GB~43B
A100 (80GB)80 GB~109B

fits in VRAM runs with GPU+CPU offload too big

VRAM requirements — frequently asked questions

How much VRAM do I need to run a 7B model?

About 5 GB of VRAM at 4-bit quantization, or roughly 18 GB at full FP16 precision. A 7–8B model at 4-bit fits comfortably on any 8 GB+ GPU.

How much VRAM does a 13B or 70B model need?

At 4-bit: a 13B model needs ~9 GB and a 70B model ~40 GB. At FP16 they need roughly 4× that. A 70B model therefore needs a 48 GB+ GPU for 4-bit, or GPU+CPU offload on smaller cards.

Can I run a 70B model on a 24 GB GPU like an RTX 4090?

Not entirely in VRAM — 70B needs ~40 GB even at 4-bit. But you can split it across GPU + system RAM (offload) and it will run, just slower than a model that fits fully on the GPU.

How much VRAM does quantization save?

A lot. FP16 uses ~2 GB per billion parameters; 8-bit halves that to ~1 GB/B; 4-bit (Q4_K_M) drops to ~0.55 GB/B — about a quarter of FP16 — for only a small quality loss. It's what makes large models runnable on consumer GPUs.

Want the exact numbers for a specific model? Browse models or paste any Hugging Face model to check it against your own hardware. Curious what a specific card handles? Browse GPUs.