Skip to main content

learn.howToCalculate

learn.whatIsHeading

A GPU VRAM calculator estimates the video RAM required to run a large language model locally. VRAM requirements depend on model size (parameters) and numerical precision (quantization).

Wzór

VRAM ≈ (model_params × 2) / 1e9 (GiB for float16); adjust for precision/batch
P
Model parameters (billions) — Model size (e.g., 7B, 13B, 70B)
bits
Precision (bits) — 8 (int8), 16 (float16/bfloat16), 32 (float32)
VRAM
VRAM required (GiB) — Video memory needed

Przewodnik krok po kroku

  1. 1VRAM (bytes) = Parameters × bytes per parameter
  2. 2FP32: 4 bytes/param, FP16/BF16: 2 bytes, INT8: 1 byte, INT4: 0.5 bytes
  3. 3Add ~20% overhead for activations and KV cache
  4. 47B model at FP16 = 7B × 2 = 14GB minimum

Rozwiązane przykłady

Wejście
7B params at FP16
Wynik
~14GB VRAM minimum (RTX 3090 or better)
Wejście
70B params at INT4
Wynik
~35GB VRAM (2× A100 40GB)
Wejście
13B params at INT8
Wynik
~13GB VRAM (RTX 4090)

Często zadawane pytania

How much VRAM does a 7B model need?

Roughly 14 GiB in float16 (2 bytes/param). Int8 quantization: ~7 GiB. float32: ~28 GiB. Add overhead for activations.

What is quantization?

Reducing precision (float32 → int8) reduces VRAM and speeds inference, with minor quality loss. Popular for deployment.

Does batch size affect VRAM?

Yes. Larger batches require more VRAM for activations and intermediate values. Smaller batches = lower memory but slower throughput.

Gotowy do obliczeń? Wypróbuj darmowy kalkulator GPU VRAM

Spróbuj sam →

Ustawienia

PrywatnośćRegulaminO nas© 2026 PrimeCalcPro