Key ideas
- The one idea — Grouping requests lets one weight-delivery feed many tokens — multiplying efficiency for a small admission delay.
- How it is shown — The departure lounge: requests pooling for a beat, launching together; the conveyor's one haul feeding the whole batch.
- The trap to avoid — Static batches end when the LONGEST request finishes — short requests trapped inside a slow group (the flaw EP 111 fixes).
- What it sets up — What if the batch never had to end?
Here's the serving world's favorite deal: haul the model's weights out of memory once, feed a whole crowd of requests with that one delivery. The cost? A tiny wait.
The one idea
Grouping requests lets one weight-delivery feed many tokens — multiplying efficiency for a small admission delay.
You've felt it a thousand times: the tiny beat between send and reply. That pause has a purpose. Your request stands in a departure lounge, collecting companions — because here, traveling together is almost free and traveling alone is a scandal. The physics, from episode ninety-two: each token requires hauling the model's weights across the conveyor — the haul, not the math, is the cost. But the haul doesn't care how many are waiting. Weights cross once; every passenger computes its token from the same delivery. Twelve passengers, one freight bill. Batching: the machine's greatest waste, turned group discount. The numbers transform. At batch one, cores idle in single digits. Grow the formation to dozens, then hundreds, and the machine climbs toward real work — cost per token falling off a cliff while each passenger gives up little speed.
How it works — the demo
The departure lounge: requests pooling for a beat, launching together; the conveyor's one haul feeding the whole batch.
This trick is most of why API tokens don't cost ten times more. The admission fee is the beat itself, and it's a knob. Hold the gate longer: fuller formations, better economics, slower feel. Release sooner: snappier product, emptier seats. Every stack tunes this to its temperament — so the pause you feel isn't lag. It's a business decision, measured in milliseconds, made millions of times a day. But the classic version has a flaw. A batch launched together lands together — the whole formation waits for its longest-winded member. Your two-word answer, finished instantly, circles the runway behind someone's essay. Finished seats fly empty; new requests wait outside a full plane. The group discount was shackled to group scheduling.
The trap to avoid
Static batches end when the LONGEST request finishes — short requests trapped inside a slow group (the flaw EP 111 fixes).
Why it matters — and what’s next
What if the batch never had to end?
The trap is reading the beat as weakness. The service with no pause isn't better engineered — it's running emptier planes and charging someone for the vacant seats. The beat is a discount, denominated in milliseconds. Resent it if you like — but the alternative is episode one-oh-nine's private lane, at private-lane prices. Unless… the plane never lands. What if finished passengers stepped off mid-flight and new ones boarded — every seat refilled the instant it empties, at every token-step? Impossible for aircraft. Trivial for transformers — the scheduling change that made modern serving cheap. Next: continuous batching.
This is one short episode in AI: Zero → Frontier, a step-by-step climb through how AI actually works. Each episode builds only on the ones before it.
Full transcript 2:30 of narration
You've felt it a thousand times: the tiny beat between send and reply. That pause has a purpose. Your request stands in a departure lounge, collecting companions — because here, traveling together is almost free and traveling alone is a scandal.
The physics, from episode ninety-two: each token requires hauling the model's weights across the conveyor — the haul, not the math, is the cost. But the haul doesn't care how many are waiting. Weights cross once; every passenger computes its token from the same delivery. Twelve passengers, one freight bill. Batching: the machine's greatest waste, turned group discount.
The numbers transform. At batch one, cores idle in single digits. Grow the formation to dozens, then hundreds, and the machine climbs toward real work — cost per token falling off a cliff while each passenger gives up little speed. This trick is most of why API tokens don't cost ten times more.
The admission fee is the beat itself, and it's a knob. Hold the gate longer: fuller formations, better economics, slower feel. Release sooner: snappier product, emptier seats. Every stack tunes this to its temperament — so the pause you feel isn't lag. It's a business decision, measured in milliseconds, made millions of times a day.
But the classic version has a flaw. A batch launched together lands together — the whole formation waits for its longest-winded member. Your two-word answer, finished instantly, circles the runway behind someone's essay. Finished seats fly empty; new requests wait outside a full plane. The group discount was shackled to group scheduling.
The trap is reading the beat as weakness. The service with no pause isn't better engineered — it's running emptier planes and charging someone for the vacant seats. The beat is a discount, denominated in milliseconds. Resent it if you like — but the alternative is episode one-oh-nine's private lane, at private-lane prices.
Unless… the plane never lands. What if finished passengers stepped off mid-flight and new ones boarded — every seat refilled the instant it empties, at every token-step? Impossible for aircraft. Trivial for transformers — the scheduling change that made modern serving cheap. Next: continuous batching.