Blackwell, Decoded
Foundations · Module 2

The Three Scaling Laws

How compute buys intelligence6 min readModule 2 of 8

NVIDIA frames Blackwell around three “scaling laws” — three distinct ways that spending compute makes a model better. Understanding them is the key to understanding every design choice in the hardware. Here’s each one, with an analogy.

#1 · Pre-training scaling — going to school

Pre-training is the original law of AI development. Increase three things together — the training dataset size, the model’s parameter count, and the compute you spend — and you get predictable improvements in intelligence and accuracy. This law drove the rise of billion- and trillion-parameter transformer models.

Scale of growth

The compute required for pre-training has grown roughly 50 million-fold in five years. Pre-training is like sending a model to school to learn the knowledge of the internet.

#2 · Post-training scaling — learning the job

Pre-training teaches general knowledge; post-training teaches the model how to think for a specific purpose, improving its relevance for an organization’s use case. If pre-training is school, post-training is on-the-job training. Developers use synthetic data to augment their fine-tuning sets — and because synthetic data has no upper limit, the appetite for compute is large.

The 30× rule

Total compute for post-training can be 30× more than the original pre-training run.

#3 · Test-time scaling — thinking before answering

An ordinary LLM fires back a quick response in a single pass — fine for simple questions, weak on hard ones. Test-time scaling (also called long thinking or reasoning) spends extra compute during inference, letting the model reason through multiple possible answers before committing to the best one. This is the capability behind agentic AI.

The 100× rule

A reasoning model using test-time scaling is estimated to need 100× more compute than traditional single-pass inference.

Pre-training Learn the world Post-training Specialize for a job ~30× compute Test-time Reason in real time ~100× compute More compute → more capability
Each law stacks on the last. Blackwell is built to serve all three at once.
Why it matters for the hardware

These three laws are multiplicative and all point the same way: AI needs exponentially more compute, delivered in real time, with very fast links between chips. Hold onto that — it explains every engine and interconnect in the modules ahead.

Continue →