Walk through the byte accounting that proves a single-batch decode step is bandwidth-bound on H100.
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Use H100 numbers (3 TB/s HBM, 989 TFLOPS FP16) to prove that a single-batch Llama-70B decode step is bandwidth-bound rather than compute-bound. Show the byte accounting and the time each phase takes.
At batch 1 each decode step reads all 140 GB of FP16 weights once for tiny GEMV compute, so latency tracks bytes over bandwidth, roughly 47 ms on H100.
Picture a chef who can chop in a blink but keeps every recipe in a giant cookbook locked in a back room. To cook one dish the chef must walk to the back room, haul out the whole cookbook, read a single line, then cook. The walking and carrying takes minutes; the cooking takes a second. The bottleneck is the trip, not the cooking. A decode step is the same. The GPU must drag every model weight out of memory just to produce one token. The actual arithmetic is trivial, so the time is set entirely by how fast the memory bus moves the weights. Cooking for one customer or twenty takes the same single trip, which is why serving many requests together is so much cheaper per dish.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
Walk the byte accounting, both divisions, the 300 times ratio, and the operational claim that 47 ms is the floor; then list the three levers with concrete numbers and explain why FLOP-cutting tricks do nothing.
| Lever | Effect on bytes | New floor (70B) | Composes with |
|---|---|---|---|
| FP16 baseline | 140 GB read | 47 ms | baseline |
| FP8 quant | 70 GB read | 23 ms | Batching, TP |
| INT4 quant | 35 GB read | 11.7 ms | Batching, TP |
| Batch B=64 | Same 140 GB per step, 64 tokens out | 47 ms for 64 tokens | Quant, TP |
| TP-8 | 140 GB across 8 HBMs | 5.8 ms plus allreduce | Quant, Batching |
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Quoting decode cost in FLOPs and reaching for faster matmul kernels. Decode at batch 1 is memory bound, so tensor core throughput is irrelevant; only bytes moved and bandwidth set the floor.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.