TL;DR — Infrastructure Decisions at a Glance
- NVLink connects GPUs inside a single server at 900 GB/s (NVLink 4.0) — use it for tensor parallelism. InfiniBand connects servers across racks at 400 Gb/s (NDR) — use it for data parallelism and pipeline parallelism. Most single-node fine-tuning doesn't require InfiniBand at all (per NVIDIA DGX deployment guide).
- SXM form factor delivers 30-40% more memory bandwidth than PCIe because the GPU solders directly to the baseboard, enabling higher power limits and full NVLink lane counts.
- Direct liquid cooling removes 80+ kW per rack while keeping PUE under 1.10. Air cooling caps out around 25-30 kW per rack with a PUE of 1.3-1.5.
- HBM3e (H200, GB200) delivers 4.8 TB/s bandwidth vs HBM3 at 3.35 TB/s — a 43% improvement that directly accelerates memory-bound inference workloads.
- Tier 3 data centers provide 99.982% uptime (1.6 hours downtime/year).Tier 4 guarantees 99.995% (26 minutes/year). Most GPU workloads run fine in Tier 3. Tier 4 is not recommended if your workloads already implement checkpoint-restart.
- Cloud vs colocation vs on-prem: Cloud GPU instances (AWS, GCP, Azure) suit burst workloads under 3 months. Colocation breaks even at 6-12 months for sustained training. On-prem doesn't make sense unless you have 500+ GPU sustained demand and in-house DC ops staff.
1. NVLink vs InfiniBand — When Each Matters
NVLink and InfiniBand solve different problems at different scales. NVLink is a GPU-to-GPU interconnect that operates within a single server node. It provides a unified memory domain across GPUs so that tensor parallelism — splitting a single matrix multiplication across multiple GPUs — can proceed without bottlenecking on a narrow PCIe bus. NVLink 4.0 (Hopper) delivers 900 GB/s total bidirectional bandwidth per GPU. NVLink 5.0 (Blackwell) doubles that to 1,800 GB/s.
InfiniBand is a network fabric that connects servers to each other across racks and even across buildings. When your training job uses data parallelism (each GPU holds the full model, different data shards) or pipeline parallelism (different layers on different nodes), the gradient synchronization and activation transfers happen over InfiniBand. NDR InfiniBand delivers 400 Gb/s (50 GB/s) per port, and NDR400 pushes that to 800 Gb/s per port in late 2025 deployments.
| Attribute | NVLink 4.0 (Hopper) | NVLink 5.0 (Blackwell) | InfiniBand NDR | InfiniBand NDR400 |
|---|---|---|---|---|
| Bandwidth per GPU/port | 900 GB/s | 1,800 GB/s | 50 GB/s (400 Gb/s) | 100 GB/s (800 Gb/s) |
| Scope | Intra-node (8 GPUs) | Intra-node (up to 72 GPUs via NVLink domain) | Inter-node (rack-to-rack) | Inter-node (rack-to-rack) |
| Latency | <1 us | <1 us | ~1-2 us | ~1-2 us |
| Best for | Tensor parallelism | Tensor parallelism, large model sharding | Data parallelism, AllReduce | Data parallelism at scale |
| Topology | NVSwitch mesh | NVSwitch + NVLink domain | Fat-tree / Dragonfly+ | Fat-tree / Dragonfly+ |
The Jetstream Contrast: If you are fine-tuning a 7B-parameter model on a single 8xH100 server, InfiniBand is not required for single-node training — all communication stays on NVLink. If you are pre-training a 405B model across 512 GPUs spanning 64 nodes, InfiniBand NDR becomes your bottleneck, and the difference between NDR (400 Gb/s) and NDR400 (800 Gb/s) can shave 15-20% off your training time at scale.
Cloud vs colocation for interconnect: Cloud providers bundle InfiniBand into managed GPU clusters (e.g., AWS P5 instances use EFA, not InfiniBand). Colocation gives you direct control over fabric generation and topology. On-prem is unnecessary for most teams — colocation offers the same hardware control without the capital expenditure of building switch infrastructure. NVLink topology is not configurable in cloud instances per NVIDIA's HGX design — you get what the cloud provider deployed.
When evaluating colocation facilities on GYGO Place, confirm which InfiniBand generation the facility supports. Many Tier 3 facilities still run HDR (200 Gb/s) fabric, which creates a 2x bandwidth gap versus NDR.
2. SXM vs PCIe Form Factors — Performance Difference & Use Cases
NVIDIA ships most data center GPUs in two form factors: SXM (Server eXtension Module) and PCIe. The SXM module solders directly onto a custom baseboard designed by NVIDIA (the HGX platform). This direct connection enables higher power delivery (700W for H100 SXM5 vs 350W for H100 PCIe), full NVLink connectivity (18 NVLink 4.0 links vs zero on PCIe), and superior memory bandwidth (3.35 TB/s vs 2.0 TB/s on H100).
PCIe GPUs plug into a standard PCIe Gen5 x16 slot, making them compatible with any server chassis that accepts full-height, full-length cards. They are simpler to deploy, cheaper to procure, and easier to replace. But the performance gap is real: SXM H100 delivers 30-40% more FP8 throughput than PCIe H100 in sustained training workloads because of the higher power envelope and memory bandwidth.
| Specification | H100 SXM5 | H100 PCIe | A100 SXM4 | A100 PCIe |
|---|---|---|---|---|
| TDP (Watts) | 700W | 350W | 400W | 300W |
| Memory Bandwidth | 3.35 TB/s | 2.0 TB/s | 2.0 TB/s | 2.0 TB/s |
| NVLink Support | 18 links (NVLink 4.0) | None | 12 links (NVLink 3.0) | None |
| FP8 TFLOPS | 3,958 | 2,635 | N/A (FP16: 312) | N/A (FP16: 312) |
| Best For | Training clusters, multi-GPU workloads | Single-GPU inference, edge deployment | Training (previous gen) | Inference, mixed workloads |
Decision framework: Choose SXM if you are building a dedicated training cluster with 8+ GPUs per node and need maximum throughput. Choose PCIe if you are deploying inference endpoints where each GPU operates independently, or if your facility cannot support the power and cooling demands of SXM modules. SXM is not recommended if your facility only supports air cooling — the 700W TDP per GPU requires liquid cooling or high-density rear-door heat exchangers (per NVIDIA DGX H100 installation guide).
Cloud vs colocation vs on-prem for form factor: Cloud instances abstract the SXM vs PCIe distinction entirely — you cannot choose form factor on AWS or GCP. Colocation lets you specify SXM-only nodes with NVLink, which is critical for training. On-prem SXM deployments are not necessary unless you run 24/7 training at scale exceeding 100 GPUs, where the amortization period justifies the $200K-300K per-node investment. PCIe servers don't require custom baseboards or NVSwitch ASICs, making them viable for smaller on-prem inference setups.
GYGO's GPU purchase marketplace lists both SXM and PCIe variants with real-time pricing from verified resellers.
3. Liquid Cooling vs Air Cooling — Power Density & PUE Impact
The shift from A100 (400W TDP) to H100 SXM (700W TDP) to GB200 (1,000W+ TDP per GPU module) has made cooling the defining constraint of modern GPU data centers. An 8xH100 DGX server draws 10.2 kW. Pack four of those into a rack and you need 40+ kW of cooling capacity — well beyond what traditional raised-floor air cooling can handle.
Air cooling moves heat from server heatsinks into the data center hot aisle using fans, then exhausts it through CRAC/CRAH units. It works reliably up to 25-30 kW per rack but becomes impractical beyond that threshold. Power Usage Effectiveness (PUE) for air-cooled GPU facilities typically ranges from 1.3 to 1.5, meaning 30-50% of total power goes to cooling infrastructure rather than compute.
Direct liquid cooling (DLC) runs coolant through cold plates mounted directly on GPU dies, removing heat at the source. It supports 80-120+ kW per rack, enabling much denser GPU deployments. PUE drops to 1.05-1.10 because liquid transfers heat 25x more efficiently than air. NVIDIA's GB200 NVL72 requires liquid cooling — there is no air-cooled option for the Blackwell NVL rack.
| Metric | Air Cooling | Rear-Door Heat Exchanger | Direct Liquid Cooling |
|---|---|---|---|
| Max kW per rack | 25-30 kW | 40-50 kW | 80-120+ kW |
| Typical PUE | 1.3 - 1.5 | 1.15 - 1.25 | 1.05 - 1.10 |
| Compatible GPUs | A100, H100 PCIe, L40S | H100 SXM (limited density) | H100 SXM, H200, GB200 NVL72 |
| Retrofit cost | Existing infrastructure | $15K-25K per rack | $50K-100K per rack + plumbing |
| Annual energy savings (40 kW rack) | Baseline | ~$8K-12K vs air | ~$18K-25K vs air |
Configuration negation: Rear-door heat exchangers are not recommended if you plan to exceed 50 kW per rack — they hit their thermal ceiling and cannot scale to GB200 densities (per CoolIT Systems DLC specifications). Immersion cooling is unnecessary for standard H100 SXM deployments; direct-to-chip liquid cooling handles the thermal load at lower complexity. Air cooling doesn't require any plumbing retrofit, but it caps your deployment density at 25-30 kW per rack regardless of available floor space.
Cloud vs colocation vs on-prem for cooling: Cloud providers manage cooling transparently — you cannot choose cooling type on AWS or GCP. Colocation facilities vary widely: some offer DLC-ready racks while others only support air cooling. On-prem liquid cooling requires dedicated mechanical engineering staff and $500K+ in plumbing infrastructure, which is not justified unless you operate 50+ racks continuously.
The Jetstream Contrast: Air cooling is fine for inference-focused deployments with L40S or A100 PCIe cards at moderate density. But if you are deploying H100 SXM or GB200 training clusters, liquid cooling is not a luxury — it is a prerequisite. When browsing GYGO Place facilities, filter for DLC-ready sites if you plan to run anything above 30 kW per rack.
4. Power Density Requirements — kW per Rack for Different GPU Configs
Power density is the single most common reason GPU colocation deals fall through. A facility may have available rack space but lack the electrical capacity to power high-density GPU systems. Understanding your power requirements before contacting facilities saves weeks of back-and-forth.
A standard enterprise server rack draws 5-8 kW. A single NVIDIA DGX H100 system (8xH100 SXM + 2 CPUs + networking) draws 10.2 kW. A DGX SuperPOD with 32 DGX units needs a dedicated 400+ kW power feed. The GB200 NVL72, which packs 72 Blackwell GPUs into a single liquid-cooled rack, draws approximately 120 kW. These numbers exclude networking switches, storage, and cooling overhead.
| Configuration | GPUs per Rack | Power Draw (kW) | Cooling Required |
|---|---|---|---|
| 4x RTX 4090 servers (inference) | 16 | 8-12 kW | Air cooling |
| 2x A100 PCIe servers | 16 | 12-16 kW | Air cooling |
| 2x DGX H100 (8xSXM each) | 16 | 20-22 kW | Rear-door HX or DLC |
| 4x DGX H100 | 32 | 40-45 kW | DLC required |
| GB200 NVL72 rack | 72 | ~120 kW | DLC mandatory |
Cloud vs colocation vs on-prem for power: Cloud pricing bundles power costs into hourly rates, making power density invisible but expensive at scale. Colocation exposes power as a direct cost — you pay per kW provisioned, so over-provisioning wastes money. On-prem facilities give maximum control over power contracts but require negotiating directly with utilities, which is not necessary for deployments under 1 MW total. Dual-feed utility power is not required for most GPU deployments — UPS with generator backup (standard in Tier 3) provides sufficient redundancy per Uptime Institute guidelines.
When calculating your total facility power requirement, multiply compute power by the facility's PUE. A 40 kW compute load in a facility with 1.3 PUE actually draws 52 kW from the grid. At $0.08/kWh, that difference adds $8,400/year in power costs per rack. This is why PUE matters — and why our colocation ROI calculator factors in PUE when estimating total cost of ownership.
5. GPU Memory Hierarchy — HBM3 vs HBM3e vs GDDR6X
GPU memory technology determines two critical metrics: how much model you can fit on a single GPU (capacity) and how fast you can feed data to the GPU's compute cores (bandwidth). These constraints directly affect which parallelism strategies you need, how many GPUs a workload requires, and ultimately your cost per token or cost per training run.
GDDR6X is the memory technology used in consumer and workstation GPUs like the RTX 4090. It provides 24 GB of capacity at 1.0 TB/s bandwidth. This is sufficient for inference on models up to 13B parameters (quantized) and fine-tuning models up to 7B with QLoRA, but it cannot fit larger models without aggressive quantization.
HBM3 (High Bandwidth Memory, third generation) is used in the H100 and MI300X. The H100 SXM5 provides 80 GB at 3.35 TB/s. The MI300X uses HBM3 stacks to deliver 192 GB at 5.3 TB/s — enough to fit a 70B model in BF16 on a single GPU without quantization. HBM3 achieves its bandwidth advantage by stacking memory dies vertically and connecting them to the GPU via a silicon interposer with thousands of parallel data lanes.
HBM3e is the enhanced version used in the H200 (141 GB at 4.8 TB/s) and GB200 (192 GB at 8.0 TB/s). The "e" denotes higher per-pin data rates, delivering a 43% bandwidth increase over HBM3 at the same stack count. For inference workloads where throughput is memory-bandwidth-bound (autoregressive token generation), the move from H100 (HBM3) to H200 (HBM3e) delivers a proportional throughput improvement without any code changes.
| Memory Type | GPU Example | Capacity | Bandwidth | Best For |
|---|---|---|---|---|
| GDDR6X | RTX 4090 | 24 GB | 1.0 TB/s | Small model inference, fine-tuning (≤7B) |
| HBM3 | H100 SXM5 | 80 GB | 3.35 TB/s | Training, multi-GPU inference |
| HBM3 | MI300X | 192 GB | 5.3 TB/s | Large model single-GPU, 70B+ BF16 |
| HBM3e | H200 | 141 GB | 4.8 TB/s | Inference throughput, 70B quantized |
| HBM3e | GB200 | 192 GB | 8.0 TB/s | Foundation model pre-training |
What you don't need: GDDR6X doesn't require HBM-class cooling or power infrastructure — RTX 4090 inference nodes run on standard air cooling at 450W TDP. HBM3e is not necessary for models under 13B parameters; at that scale, GDDR6X provides sufficient bandwidth and capacity (per NVIDIA TensorRT-LLM benchmarks). Upgrading from HBM3 to HBM3e is not recommended if your workload is compute-bound rather than memory-bandwidth-bound — pre-training large models benefits more from additional FLOPS than from extra memory bandwidth.
When renting GPUs on GYGO, memory capacity and bandwidth should drive your selection more than raw FLOPS. A memory-bandwidth-bound inference workload will see more benefit from upgrading H100 to H200 (43% bandwidth gain) than from adding more H100 GPUs.
6. Multi-GPU Topologies — NVSwitch, NVLink Bridge & PCIe Switching
How GPUs communicate within a server node determines the efficiency of multi-GPU parallelism. There are three dominant topologies in 2026 deployments, each with different bandwidth, latency, and cost characteristics.
NVSwitch mesh (SXM systems): NVIDIA's DGX and HGX platforms use NVSwitch ASICs to create an all-to-all mesh between 8 GPUs. Every GPU can communicate with every other GPU at full NVLink bandwidth simultaneously. The DGX H100 has four NVSwitch chips providing 900 GB/s per GPU in a fully non-blocking topology. This is the gold standard for tensor parallelism because no GPU-to-GPU path is slower than any other.
NVLink Bridge (consumer/workstation): The RTX 4090 and some workstation GPUs support NVLink Bridge, which creates a point-to-point link between exactly two GPUs. Bandwidth is 112.5 GB/s (NVLink 3.0 on RTX 4090). This helps for 2-GPU inference or training setups but does not scale beyond a pair. Most consumer motherboards support at most two NVLink-bridged GPUs.
PCIe switching: In PCIe-based multi-GPU servers, GPUs communicate through the PCIe root complex and CPU, adding latency and limiting bandwidth. PCIe Gen5 x16 delivers 64 GB/s per GPU, but actual GPU-to-GPU bandwidth through the CPU switch fabric is often 25-30 GB/s due to NUMA topology and contention. This is adequate for data parallelism (gradient AllReduce) where communication is periodic, but too slow for tensor parallelism where GPUs exchange activations continuously.
Topology Decision Matrix
- NVSwitch mesh (8 GPUs, SXM): Required for tensor parallelism in training. Cost: $200K-300K per node (DGX H100). Best for: pre-training, large-scale fine-tuning.
- NVLink Bridge (2 GPUs): Useful for doubling memory capacity for inference. Cost: ~$100 for the bridge connector. Best for: 2-GPU inference setups, budget research.
- PCIe multi-GPU (4-8 GPUs): Sufficient for data parallelism and independent inference endpoints. Cost: $30K-80K per server. Best for: inference serving, embarrassingly parallel batch jobs.
The Jetstream Contrast: An 8xH100 PCIe server costs roughly 40% less than a DGX H100. But without NVSwitch, tensor parallelism across all 8 GPUs is not feasible — each GPU must hold the entire model or rely on slow PCIe data paths. For training workloads, the DGX premium pays for itself in throughput. For inference farms where each GPU runs an independent model replica, PCIe servers deliver better cost-per-query.
Over-engineering warning: NVLink Bridge doesn't require NVSwitch ASICs or HGX baseboards — it is a simple physical connector between two adjacent GPUs. NVSwitch is not needed for 2-GPU setups (per NVIDIA NVLink Bridge documentation). PCIe multi-GPU topologies don't require any special interconnect hardware beyond a standard server motherboard with sufficient PCIe lanes. NVLink is not necessary for embarrassingly parallel inference workloads where each GPU serves independent requests with no inter-GPU communication.
Cloud vs colocation topology control: Cloud instances provide fixed topologies — you cannot customize NVSwitch configurations on AWS P5 or GCP A3. Colocation with owned hardware lets you choose NVSwitch mesh vs PCIe based on workload mix. On-prem is not justified for topology control alone; colocation provides the same flexibility without facility management overhead.
7. Data Center Tier Classifications — What They Mean for GPU Workloads
The Uptime Institute's tier classification system (Tier 1-4) defines facility redundancy, power availability, and expected uptime. For GPU workloads — especially multi-day training runs that checkpoint infrequently — the tier classification of your colocation facility directly impacts your risk of lost compute.
Tier 3 (Concurrently Maintainable): Has redundant power and cooling paths (N+1), meaning any single component can be taken offline for maintenance without affecting the compute load. Expected uptime is 99.982%, which translates to approximately 1.6 hours of downtime per year. The vast majority of GPU colocation facilities in 2026 are Tier 3. This is sufficient for most training workloads that implement checkpoint-restart.
Tier 4 (Fault Tolerant): Has fully redundant, independent power and cooling systems (2N). Any single failure, including a complete utility power loss, does not cause downtime. Expected uptime is 99.995% (approximately 26 minutes of downtime per year). Tier 4 facilities are significantly more expensive — typically 40-60% premium over Tier 3 — and are justified only for customer-facing inference services with strict SLA requirements or for organizations running training jobs that cannot tolerate interruption.
| Tier | Uptime SLA | Annual Downtime | Redundancy | GPU Workload Fit |
|---|---|---|---|---|
| Tier 2 | 99.741% | 22 hours | Partial (N+1 power) | Development, non-critical batch jobs |
| Tier 3 | 99.982% | 1.6 hours | N+1 (concurrently maintainable) | Training with checkpointing, batch inference |
| Tier 4 | 99.995% | 26 minutes | 2N (fully fault-tolerant) | Real-time inference SLA, mission-critical training |
Configuration negation: Tier 2 facilities are not recommended for multi-day training runs — the 22-hour annual downtime window creates unacceptable risk of checkpoint loss. 2N power redundancy (Tier 4) is unnecessary for batch training workloads that implement checkpoint-restart every 15-30 minutes (per PyTorch distributed training best practices). Dedicated generator capacity is not required if the facility already provides N+1 UPS coverage with automatic transfer switches as per Uptime Institute Tier 3 specifications.
For most AI teams, a Tier 3 facility with strong checkpoint infrastructure is the economically rational choice. The 40-60% cost premium of Tier 4 is only justified if your business model requires sub-minute recovery times or if your compliance framework mandates fault-tolerant infrastructure. Browse GYGO Place to filter facilities by tier classification, power density, and cooling type.
Frequently Asked Questions
What is the difference between NVLink and InfiniBand for GPU clusters?▾
Why is SXM more expensive than PCIe for the same GPU chip?▾
How much power does a single NVIDIA DGX H100 system draw?▾
Is liquid cooling worth the investment for GPU data centers?▾
What does HBM3e mean and why does it matter for AI workloads?▾
Do I need a Tier 4 data center for GPU training workloads?▾
Can I mix SXM and PCIe GPUs in the same cluster?▾
What interconnect bandwidth do I need for distributed LLM training?▾
Ready to Build Your GPU Infrastructure?
Whether you need to rent GPU compute for a training run, purchase hardware for a permanent cluster, or find the right colocation facility for your GPU investment, GYGO has you covered.