Infrastructure

GPU generations: Hopper to Blackwell to Rubin

Three GPU generations, three leaps in inference capability. From Hopper's FP8 Tensor Cores to Blackwell's dual-die design to Rubin's HBM4, each generation reshapes what is possible in LLM serving.

If you squint at the history of NVIDIA datacenter GPUs through the lens of LLM inference, a clear pattern emerges. Each generation does not just add more transistors. It adds the specific capability that the current generation's bottleneck demands. Hopper added FP8 because FP16 was leaving compute on the table. Blackwell doubled the die because single-die scaling hit physics limits. Rubin adds HBM4 because memory bandwidth is still the wall. Let me walk through each one.

Hopper (H100, H200): the FP8 generation

The H100, launched in 2022, was the first datacenter GPU designed with LLM inference as a primary workload. Its headline features for inference:

The H200 was a memory refresh of Hopper, keeping the same compute architecture but upgrading to 141 GB HBM3e at 4.8 TB/s. This single change was transformative: a 70B BF16 model that needed TP=2 on H100 could fit on a single H200. Fewer GPUs means less communication overhead, simpler deployment, and lower cost.

The H200 lesson

Sometimes the biggest inference improvement is not faster compute but more and faster memory. The H200 proved that doubling HBM capacity and increasing bandwidth by 43% could matter more than any architectural change.

Blackwell (B100, B200, GB200): the dual-die generation

Blackwell, announced in 2024, took an unusual approach: instead of one massive die, the GPU is built from two dies connected by a 10 TB/s chip-to-chip interconnect. This is a manufacturing decision (two smaller dies have better yields than one giant die) that also delivers a raw performance leap:

The GB200 pairs two B200 GPUs with a Grace ARM CPU in a single module, connected by a coherent NVLink interface. This is NVIDIA's push toward a unified CPU-GPU memory space, simplifying data movement for inference pipelines that involve preprocessing on the CPU.

Rubin (R100): the HBM4 generation

Rubin, announced on NVIDIA's 2025 roadmap for expected delivery in 2026-2027, represents the next architectural leap. While specific details are still evolving, the key announced features include:

The Rubin generation signals that NVIDIA sees memory bandwidth as the persistent bottleneck for the foreseeable future. Even with FP4 reducing the compute-per-byte ratio, the sheer size of modern models (hundreds of billions to trillions of parameters) means the memory wall is not going away.

What this means for inference engineers

Each generation shifts the optimization landscape:

The GPU roadmap is the inference roadmap. Every generation attack the current bottleneck. Understanding where you are on the roofline today tells you exactly which spec upgrade to care about tomorrow.

Next: multi-GPU instances and MIG, where we look at how cloud providers expose these GPUs and how MIG lets you carve a single GPU into isolated slices for different workloads.