Parameters
70B dense (GQA)
Context
128K
License
Llama Community License
Vision
No

Llama 3.3 70B is the benchmark other open models are measured against: excellent instruction following, drafting quality and general knowledge, with the broadest ecosystem support of any family. The price is hardware: ~40GB of weights at Q4 means a 48GB card or a dual-24GB rig. If your tasks are RAG-grounded Q&A, test a 27B first — the 70B earns its silicon on nuanced writing and harder reasoning.

VRAM by quantization level

QuantWeightsFits on
Q4_K_M ~40–43 GB 48GB card, or 2×24GB (layer split)
IQ2_M ~22–24 GB single 24GB — noticeable quality loss; a good 27B at Q4 is usually smarter
Q8_0 ~70 GB 80GB datacenter card

Weights only — add KV-cache (grows with context and concurrency) and ~1–2GB runtime overhead. Formula and cache math in the VRAM guide.

Quick start

$ ollama run llama3.3 # default 70B Q4_K_M — needs ~43GB total

Dual-GPU: llama.cpp/Ollama split layers automatically; vLLM with tensor-parallel 2 is faster for serving. Do not plan around CPU offloading — every 20% of the model on CPU roughly halves speed. On Macs, a 96GB+ Studio runs Q5 with big context, quietly, at ~7–10 tok/s.

Expected performance

HardwareGeneration speed
2× RTX 3090 (Q4, layer split) ~13–18 tok/s
RTX A6000 48GB (Q4) ~12–15 tok/s
A100/H100 80GB (Q4/Q8) ~25–40 tok/s
Mac Studio 96–192GB (Q5) ~7–10 tok/s

Indicative single-user figures (llama.cpp/Ollama class runtimes); multi-user serving via vLLM multiplies total throughput 10–20× through batching.

Tips & gotchas

  • Budget the KV-cache: 128K context can add tens of GB — quantize the cache to Q8 and size for your real context.
  • Occasional 70B need? Rent an 80GB GPU by the hour instead of buying — the utilization math rarely favors owning for occasional use.
  • Free for almost all business use; custom terms — have someone read it before productizing.

FAQ

Can I run Llama 3.3 70B on one RTX 4090?

Only at IQ2-class quants with real quality loss, or with painful CPU offload. The honest single-card tier is 48GB; on 24GB, run a strong 27B instead.

Is the Llama license OK for company use?

For internal use, almost always yes. It has custom terms (not Apache/MIT) — review before shipping it inside a product.