CoreWeave brought up its first multi-rack Vera Rubin NVL72 cluster on September 16 and buried the real number two paragraphs into the press release: 16,635 tokens per second per GPU running GPT-OSS-120B offline on a single GB300 NVL72 rack, the highest per-GPU throughput of any MLPerf v6.1 Datacenter Closed submission, on any silicon.

The number that isn’t the compute number

Every rack launch leads with GPU count. This one has 72 Rubin GPUs and 36 Vera CPUs per rack, NVLink 6 between them, and it’s easy to stop reading there. But 72 fast GPUs sitting in one chassis doesn’t get you the throughput-per-GPU record. What gets you there is that each GPU carries two ConnectX-9 SuperNICs, 1.6 Tb/s of scale-out bandwidth per chip, wired through Spectrum-X Ethernet into a non-blocking fabric that holds up to roughly 128,000 GPUs per rail. The compute was never the bottleneck. Getting activations off one die and onto the next without the pipeline stalling was, and that’s a networking problem, not a FLOPS problem.

CoreWeave also posted 1,196 queries per second serving Qwen3-VL on the same rack, the highest server throughput among cloud providers on that model. Two different workloads, offline batch and online serving, both topping out on the same hardware because the interconnect doesn’t care which one you’re running. That’s the tell that the fabric, not the silicon, is what’s actually being benchmarked here.

Same shape, different scale

I’ve built the small version of this exact problem. My matching engine’s lock-free SPSC ring buffer exists for one reason: get an order from the producer thread to the consumer thread without a lock forcing one of them to wait, because the wait is what kills your p99, not the compute the consumer does once it has the data. 900 nanoseconds p99 on my engine isn’t a compute number either, it’s a “how fast can two things that need to talk actually talk” number. CoreWeave’s rack is the same question at a completely different scale: instead of one ring buffer between two threads, it’s 128,000 GPUs on one non-blocking rail, and the answer that keeps it from stalling is still bandwidth and topology, not raw throughput per chip.

The pattern holds every time hardware gets faster: the marketing number is compute, the engineering number is how fast the pieces talk to each other, and the second number is the one that tells you whether the first number survives contact with a real workload.

More benchmarking, same discipline: github.com/saksham10arora-dotcom.