The Three Scaling Laws
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.
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.
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.
A reasoning model using test-time scaling is estimated to need 100× more compute than traditional single-pass inference.
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.