Back to Blog
HardwareApril 25, 2026

The HGX H100: Why It Matters for Multi-Node Training

The hgx h100 is not a single GPU. It is a baseboard that holds eight NVIDIA H100 SXM GPUs connected through four NVSwitch chips, forming a single compute node where every GPU can communicate with every other GPU at full NVLink bandwidth. That bandwidth is 900 GB/s bidirectional per GPU, totaling 7.2 TB/s of aggregate interconnect across the eight devices. This is not a detail that shows up in most marketing materials, but it is the detail that determines whether your large-scale training jobs spend their time on useful computation or on waiting for data to move between accelerators. The NVSwitch fabric inside the hgx h100 ensures that intra-node communication is never the bottleneck, which means model parallelism strategies like tensor parallelism can split layers across all eight GPUs without meaningful overhead. Understanding this architecture is the first step toward understanding why the HGX form factor became the standard for serious distributed training.

The reason the hgx h100 became that standard has everything to do with how modern large language models partition their work. Training a model with hundreds of billions of parameters requires splitting the workload across dozens or hundreds of GPUs, and the efficiency of that split depends entirely on how fast those GPUs can exchange gradients, activations, and optimizer states. Within a single HGX node, NVLink handles this at near-memory-bandwidth speeds. The eight GPUs behave almost like a single device for tensor-parallel operations, which is why most training frameworks default to eight-way tensor parallelism on HGX systems. This is a fundamentally different architecture from nvidia h100 server configurations that use PCIe connections, where inter-GPU bandwidth drops to 64 GB/s per link and becomes the dominant bottleneck for any communication-heavy parallelism strategy. Teams evaluating GPU infrastructure providers should be asking specifically whether the H100s on offer are SXM modules on HGX baseboards or PCIe cards in standard server chassis, because the performance difference for training workloads is not incremental. It is structural.

The distinction between DGX and HGX is worth clarifying because the terms are often used interchangeably, even though they refer to different things. The DGX H100 is a complete, turnkey server system built by NVIDIA that includes the HGX H100 baseboard along with dual CPUs, system memory, NVMe storage, network adapters, and a chassis designed and validated by NVIDIA. The HGX H100 is the baseboard alone, which NVIDIA sells to server OEMs like Supermicro, Dell, and Lenovo, who then build their own server systems around it. The GPU compute capability is identical in both cases because the baseboard is the same. The difference is in the surrounding system design, support model, and price. DGX systems carry a premium for NVIDIA's integration and support, while OEM servers built on HGX baseboards offer more flexibility in configuration and often lower cost. Most large gpu cluster deployments in production today run on OEM HGX-based servers rather than DGX, because at scale the per-node cost premium of DGX adds up to millions of dollars without a proportional benefit in GPU performance.

The real engineering challenge begins when you connect multiple hgx h100 nodes together for training jobs that span 16, 64, 256, or more GPUs. Within each node, NVLink provides the high-bandwidth interconnect. Between nodes, the network fabric takes over, and this is where InfiniBand becomes critical. Each HGX H100 node in a properly configured training cluster connects to the network through eight NVIDIA ConnectX-7 adapters, one per GPU, each providing 400 Gb/s of InfiniBand NDR bandwidth. This one-to-one mapping between GPUs and network ports means that inter-node communication scales linearly with the number of GPUs, avoiding the congestion that occurs when multiple GPUs share a single network uplink. The difference between a well-configured multi-node HGX deployment and a poorly configured one often comes down to this networking layer. Teams that have worked through the InfiniBand versus Ethernet decision already understand that the interconnect between nodes determines whether multi-node scaling efficiency stays above 90 percent or drops below 70 percent. On a properly built InfiniBand fat-tree topology, a 32-node HGX cluster with 256 H100 GPUs can sustain 85 to 92 percent linear scaling on large transformer training jobs, which means the investment in additional nodes translates almost directly into faster training.

The hgx h100 architecture also dictates how you should think about failure domains and operational resilience at scale. Each baseboard is a tightly coupled unit. If one of the eight GPUs develops a hardware fault or begins producing correctable memory errors at a rate that affects reliability, the standard practice is to take the entire eight-GPU node offline for repair rather than attempting to run a degraded seven-GPU configuration. This means your spare capacity planning should be denominated in full nodes, not individual GPUs. A 256-GPU training cluster is really 32 HGX nodes, and losing one node reduces your effective capacity by 3 percent but requires reconfiguring your parallelism topology across 31 nodes. Teams running at this scale should be asking their provider about mean time to replacement for a full nvidia h100 server node, not just individual GPU failure rates. The real cost of GPU downtime compounds rapidly when a multi-day node replacement pauses a training run that is costing thousands of dollars per hour in reserved compute.

The questions to ask your provider about their HGX configurations go beyond whether they offer H100 SXM GPUs. You want to know whether their servers use genuine HGX H100 baseboards with NVSwitch interconnect, because some configurations place SXM GPUs on custom baseboards without full NVSwitch connectivity. You want to confirm the per-GPU network bandwidth to the fabric, specifically whether each GPU has its own dedicated 400 Gb/s InfiniBand port or whether GPUs share uplinks. You want to understand the network topology between nodes, whether it is a full fat-tree, a rail-optimized design, or something more constrained. You want to know the GPU-to-GPU latency between nodes, not just the theoretical bandwidth. And you want to ask about their experience running multi-node training at the scale you need, because configuring a gpu cluster of HGX nodes for efficient distributed training involves NCCL tuning, topology awareness, job scheduling, and health monitoring that take real operational expertise to get right. Teams already planning their capacity needs across funding stages should factor these infrastructure questions into their provider evaluation from the start, not after signing a contract and discovering that the nodes do not perform as expected at scale.

The HGX H100 will eventually be succeeded by next-generation baseboards built around Blackwell and future architectures, but the design principles it established will persist. Eight tightly coupled GPUs with a high-bandwidth internal switch, one network port per GPU for scale-out, and a baseboard form factor that OEMs can integrate into their own server designs. These principles are what turned the HGX into the building block of modern AI infrastructure, and understanding them is what separates teams that build effective training clusters from those that simply rent GPUs and hope for the best.