Skip to main content

Як розрахувати GPU VRAM

Що таке GPU VRAM?

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).

Формула

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

Покрокова інструкція

  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

Розв'язані приклади

Введення
7B params at FP16
Результат
~14GB VRAM minimum (RTX 3090 or better)
Введення
70B params at INT4
Результат
~35GB VRAM (2× A100 40GB)
Введення
13B params at INT8
Результат
~13GB VRAM (RTX 4090)

Часті запитання

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.

Готові порахувати? Спробуйте безкоштовний калькулятор GPU VRAM

Спробуйте самі →

Налаштування