TFLOPS โ PFLOPS Scale
1,000 TFLOPS = 1 PFLOPS. Nobody says "my cluster does 0.00125 EFLOPS." Scale the number up before you walk into the architecture review. Your 1,250 TFLOPS fleet is 1.25 PFLOPS โ quote it right in the board deck.
Bidirectional Compute Scaler
Single-node TFLOPS โ rack-scale PFLOPS. The conversion is trivial. The framing is not. Top-tier clusters break the PFLOPS barrier โ quantify where your fleet lands.
Datacenter Compute Reference
Real-world cluster scale benchmarks for context.
| Configuration | TFLOPS | PFLOPS |
|---|---|---|
| 8ร H100 Node (FP8) | 15,840 | 15.84 |
| DGX H100 (8-GPU) | 3,168 | 3.17 |
| 32ร H100 Rack | 63,360 | 63.36 |
| 1,000ร H100 Cluster | 1,980,000 | 1,980 |
| Top 10 HPC (Avg.) | โ | ~200 PF |
| Frontier (ORNL) | โ | ~1,200 PF |
Navigating the FLOP Scale: From Chip to Datacenter
A single H100 GPU delivers approximately 1,980 TFLOPS in FP8 dense matmul. A single 8-GPU DGX node pushes ~15.8 PFLOPS. Scale to 1,000 GPUs and you're contending with 1.98 exaflops of theoretical throughput โ provided your interconnect fabric (NVLink + InfiniBand) doesn't bottleneck the bisection bandwidth.
This converter helps infrastructure engineers translate between the node-level TFLOPS spec sheets and the aggregated PFLOPS numbers that procurement and capacity-planning teams actually budget against. Always derate theoretical peaks by 30โ40% for real-world sustained throughput once you account for memory-bound kernels, network contention, and checkpointing overhead.
The precision ladder: one GPU, six different TFLOPS numbers
Vendor spec sheets quote the highest number the silicon can produce under the most favourable precision, and that number is almost never the one your workload achieves. The H100 SXM illustrates the spread across a single part:
FP64: 34 TFLOPS ยท FP64 tensor core: 67 TFLOPS ยท FP32: 67 TFLOPS ยท TF32 tensor core: 495 TFLOPS dense ยท BF16 / FP16 tensor core: 990 TFLOPS dense ยท FP8 tensor core: 1,979 TFLOPS dense
The headline figure is the FP8 dense number, and the sparse variant doubles it to 3,958. Between the top and bottom of that ladder sits a factor of 58. A TFLOPS figure quoted without a precision label carries no information, and comparing one generation's number against a differently-labelled number from another is how capacity plans end up wrong by an order of magnitude.
Worked example: the DGX node that benches at 3 PFLOPS
An 8-GPU DGX H100 node advertises 8 ร 1,979 = 15.8 PFLOPS. Walk it down to what a real training run sees:
Precision. Pretraining runs in BF16 with FP32 master weights, so the applicable dense rate is 990 TFLOPS per GPU rather than 1,979 โ the node is really 7.9 PFLOPS.
Sparsity. The doubled figures require 2:4 structured sparsity in the model. Essentially no frontier model is trained sparse, so the sparse rate is unusable.
Model FLOPs utilisation. Real training runs reach 35โ45% MFU once attention softmax, layer norms, gradient synchronisation and pipeline bubbles are counted. At 40%, the 7.9 PFLOPS node delivers about 3.2 PFLOPS of useful work.
A node marketed at 15.8 PFLOPS benches at roughly 3.2. The gap is not marketing dishonesty โ every step is a documented property of the hardware โ but it is the difference between a training estimate that holds and one that slips by a factor of five.
Turning PFLOPS into a delivery date
Training compute for a dense transformer is approximately 6 ร Nparams ร Ntokens FLOPs. For a 7B model over 2 trillion tokens that is 6 ร 7 ร 109 ร 2 ร 1012 = 8.4 ร 1022 FLOPs. Divide by the effective 3.2 ร 1015 FLOPS of the node above and you get 2.6 ร 107 seconds โ
roughly 300 days on a single DGX node.
Run the same job on 128 nodes with reasonable scaling efficiency and it lands near three days. This is the arithmetic that makes multi-node training mandatory rather than aspirational, and it also shows why interconnect matters more than the per-chip number: at 128 nodes the bisection bandwidth of the fabric, not the FLOP rating of the GPUs, decides whether the aggregate is 128ร or something considerably less. Derate theoretical peaks by 30โ40% before committing to a schedule, and treat any estimate built on the dense FP8 figure as fiction.