Identify the B200 and GB200 NVL72 in NVIDIA's Blackwell lineup.
B200 is NVIDIA's Blackwell-generation single GPU: 192 GB HBM3e and native FP4 plus FP8 tensor cores.
Think about scaling up a kitchen. A bigger oven (the B200) holds more food, cooks at lower temperatures the older oven could not handle, and finishes faster. But the kitchen still has space limits. A rack-scale system like GB200 NVL72 is more like converting a whole floor into one shared kitchen with 72 connected ovens and one giant pantry everyone can reach. Now you can prepare a banquet that no single oven could have managed alone, because every cook has direct access to every ingredient. For language model serving, the bigger oven is helpful, but the connected-kitchen layout is what makes serving a trillion-parameter mixture of experts or a multi-rack reasoning workload practical without sending data over slow connections.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
B200 and GB200 NVL72 are two distinct hardware concepts that often get conflated. The B200 is a single GPU, the Blackwell-generation successor to H200. The GB200 NVL72 is a rack-scale system that packages 72 B200s into one tightly-linked NVLink domain. Both matter for 2026 frontier inference, but they matter for different reasons and they unlock different workloads.
This question separates candidates who can name 2026 frontier hardware from candidates who can plan capacity for it. The discriminators are precise: Blackwell generation, FP4 added over Hopper's FP8, 192 GB HBM3e at the GPU level, 72-way shared NVLink fabric at the rack level. A serving engineer who knows those four facts can talk about MoE inference, long-context decode, and capacity economics with confidence.
This deep dive walks the B200's specs and what FP4 changes operationally, the NVL72's fabric model and what shared addressability unlocks, the workloads that genuinely need each, and the cases where the cost is wasted on smaller workloads that would run on Hopper.
B200 as a single GPU
B200 is the flagship implementation of the Blackwell architecture, the generation after Hopper. The form factor is SXM5 with a dual-die package: two GPU dies sharing the same coherent memory space, presented to software as one device. Total HBM3e is 192 GB at roughly 8 TB/s of memory bandwidth, a step up from H100's 80 GB at 3 TB/s and H200's 141 GB at 4.8 TB/s.
The headline tensor-core feature is FP4. Blackwell adds an FP4 path on the tensor cores that doubles compute throughput over FP8 at the same bandwidth. The transformer engine on Blackwell schedules precision dynamically: a workload can run weights in FP4 and activations in FP8 with hardware-managed scale tracking, so the slower path activates only where the dynamic range requires it.
FP4 is what makes Blackwell qualitatively different from Hopper for inference. FP4 weights are a quarter of BF16 weight memory and half of FP8 weight memory. FP4 KV cache, where the quality budget allows, halves decode-time bandwidth again versus FP8 KV cache. The compute ceiling on FP4 matmul is roughly double FP8, which lifts the roofline ridge point and gives prefill workloads more compute headroom before they saturate. The operational result is that a B200 serves more frontier traffic per dollar and per watt than an H100, by a margin that compounds at scale.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
Real products, models, and research that use this idea.
- Anthropic's frontier serving fleet for Claude Opus 4.7 uses GB200 NVL72-class hardware (or hyperscaler equivalents) for the largest reasoning workloads.
- OpenAI's GPT-5.5 serving relies on NVL72-class fabric for routing the largest mixture of experts experts across many GPUs.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow does FP4 on B200 change the roofline picture compared to FP8 on H100?
FP4 doubles peak compute over FP8 at roughly the same HBM bandwidth, so the ridge-point intensity doubles. A workload that just hit the compute roof on FP8 becomes bandwidth-bound again on FP4 unless it also cuts bytes moved with FP4 KV cache or further weight compression.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Treating GB200 NVL72 as just 72 separate B200s. The point is the shared NVLink fabric that lets all 72 GPUs address each other's HBM at NVLink speeds, making the rack behave like one giant GPU.
60 second bullets to scan on the way to the call.
B200's architecture generation and release year
B200's HBM3e capacity and approximate bandwidth
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.