LLM Quantization Explained: INT8, FP8, INT4 and Quality Trade-offs
LLM quantization explained: INT8 vs FP8 vs INT4 precision, quality degradation and benchmark deltas, when to quantize, and how much you save on memory and cost.
Quantization shrinks a model by storing weights in fewer bits per parameter. A 70B model in FP16 needs about 140 GB of memory; the same model in 4-bit fits in roughly 35 GB. That is the difference between renting a cluster and running on a single GPU — but the savings come with measurable quality loss.
In 2026, INT8 and FP8 quantization are close to lossless in practice, while INT4 powers most on-device and consumer deployments. This guide explains the precision ladder, what the benchmarks actually show, and how to decide where to quantize.
What quantization does to a model
A weight stored as FP16 is a 16-bit floating-point number. Quantization maps ranges of weight values onto a smaller set of discrete levels — 8-bit integers, 4-bit integers, or 8-bit floats. The model runs faster and uses less memory because smaller values transfer and multiply faster, but each rounding introduces error that compounds across layers.
The precision ladder: FP16 to INT4
- FP16/BF16: the original weights; no compression, highest memory cost.
- INT8: 4x smaller weights; quality loss often under 1-2% on standard evals.
- FP8: similar footprint to INT8 but smoother rounding for transformer layers.
- INT4: 4x smaller than INT8; quality loss grows, but the memory savings are enormous.
- INT2 and ternary: mostly research; visible quality collapse outside narrow tasks.
What quality trade-offs look like in practice
Benchmark deltas are the average story; your workload is the real story. INT4 models often keep most of their reasoning ability but show degraded code generation, more factual slips in long generations, and weaker low-resource-language performance. Math and multi-step tasks degrade first. A quantized model that passes an evaluation suite can still fail specific production prompts.
When quantization is worth it
- Running open-weights models on your own GPUs or edge devices.
- Latency-sensitive serving where smaller weights cut memory bandwidth stalls.
- Batch inference at scale where per-request cost matters.
- On-device and mobile use where RAM is fixed and small.
- Prototyping many models on one machine before committing to a provider.
When to skip quantization
- You use hosted APIs — the provider already handles precision internally.
- Quality is non-negotiable and your evals show real INT4 regressions.
- Your workload is mathematically exact (calculations, structured parsing).
- You rarely serve the model, so the memory savings never pay back.
The cost calculus
Quantization does not change token prices at most providers, but it changes your infrastructure bill: a 4-bit model lets you serve more concurrent requests per GPU and cuts the number of machines you rent. The real comparison is quality per dollar per request, not bits per weight.
FAQ
Does quantization reduce LLM accuracy?+
Usually a little. INT8 and FP8 are near-lossless; INT4 shows measurable regression on reasoning, code, and math tasks. The exact impact depends on the model and your workload.
Which is better, INT8 or FP8?+
For most transformer layers they are comparable. FP8 often handles activation scaling more gracefully; INT8 is more broadly supported by inference frameworks. Test both on your prompts.
Is a quantized model cheaper to run?+
Yes on infrastructure: fewer GB per model means more throughput per GPU. Token prices from hosted providers are unchanged, so the saving is operational, not per-token.
Related posts
Aug 15, 2026 · Model comparison
Best Open-Source LLMs in 2026: Capabilities ComparedBest open-source LLMs in 2026: Llama, Qwen, DeepSeek, and others. Quality, context windows, and when to self-host versus use an API.
Aug 15, 2026 · Model comparison
On-Device LLMs: Running AI Without the CloudOn-device LLMs explained: running small language models on phones, laptops, and edge devices — privacy, cost, and when it makes sense.
Aug 17, 2026 · Model comparison
Small Language Models in 2026: When Smaller Is SmarterSmall language models in 2026: what models under 10B parameters can and cannot do, where on-device models beat frontier LLMs, and the real cost savings.