Skip to main content

วิธีการคำนวณ GPU VRAM

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

สูตร

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 ฟรี

ลองด้วยตัวคุณเอง→

การตั้งค่า