Will Inference Change the Data Centre Architecture?
·62 min read
Physical infrastructure · AI compute
Will Inference Change the Data Centre Architecture?
Training and inference are increasingly discussed as if they require different data centres. Sometimes they do; often they don't. A GB300 rack running reasoning inference is architecturally close to one training the underlying model. A metro colo serving efficient 7B models under a tight latency SLA is not. The rest of this piece is about when the two diverge and when they stay one.
Reader takeaways
The thesis
Inference workloads vary across model scale, latency SLA, utilisation profile, geographic constraint and compute coupling. Infrastructure varies with them. GB200/GB300 run training and inference on the same rack-scale liquid-cooled platform. A metro colo runs efficient 7B models on 20 kW air-cooled racks. Both are inference. The infrastructure around them differs materially depending on where the workload lands on those five variables.
Workload mechanics
Training is forward + backward pass on large batches and is throughput-bound. In this analysis, training is modelled at 90%+ utilisation. Inference is forward-pass only, latency-bound, with more variable utilisation tied to user demand.
Rack-level TDP
GB200/GB300 NVL72 racks are in the ~120-140 kW class (NVIDIA specifies GB300 NVL72 up to 142 kW) and require DTC. DTC is a density mandate; the workload label is orthogonal. Inference racks span roughly 20-100 kW depending on silicon choice and can often stay air-cooled at the low end.
Where they diverge
Cooling architecture, network fabric (east-west vs north-south), storage stack (dataset vs KV cache), silicon mix (dense GPU vs heterogeneous), grid connection (cheap power vs metro proximity), and power chain (sidecar-first vs traditional PDU).
Four regimes
Q1 consolidated (plateau + relaxed SLA). Current default AI-infrastructure architecture, GB200/GB300 scope. Q2 metro edge (plateau + strict SLA). Small models on air-cooled colo racks, CDN-like. Q3 purpose-built inference (grow + relaxed SLA). Batch/agent workloads on custom silicon. The awkward case: if latency thresholds relax faster than model sizes shrink, Q3 collapses back into Q1. Q4 metro giant (grow + strict SLA). Technically feasible; the regime least likely to scale on economics alone. Which regime lands where depends on the five threshold variables above.
Value migration
The current AI capex cycle is overwhelmingly organised around training-scale accelerator infrastructure. As inference regimes diversify, value migrates away from a single rack-scale GPU architecture toward a broader serving stack: accelerator silicon, memory bandwidth, KV-cache networking, orchestration software, metro capacity, peering, and power efficiency.
01The workload of inference, and the infrastructure around it
The default today is consolidation. Hyperscaler AI clusters run mixed workloads on the same racks that trained the models. NVIDIA GB200 NVL72 and GB300 NVL72 are both rack-scale, liquid-cooled platforms explicitly positioned to span training and reasoning inference. That is architectural evidence that inference workloads can run on training-DC infrastructure.
But the workload of inference varies enormously across model size, latency requirement, utilisation profile, geographic constraint and compute coupling. The physical infrastructure around it varies with those variables. GB300 NVL72 is a 100+ kW-class rack-scale liquid-cooled platform explicitly designed for AI reasoning. A metro colo runs efficient 7B-70B models on air-cooled 20 kW racks with an Ethernet ToR switch. Both are inference workloads. Four regimes span the range in between.
Figure 1
One workload regime, multiple physical architectures. Which thresholds push inference into its own infrastructure?
Today, GB200/GB300 rack-scale platforms span training and reasoning inference on the same physical infrastructure. The visible deltas in the physical stack when inference stops looking like training: bottleneck (throughput vs latency), utilisation (sustained 90%+ vs variable 40-60%), silicon mix (concentrated on training accelerators vs broader inference design space), geography (cheap-power hyperscale vs regional / metro / edge), rack density (~120-140 kW rack-scale for GB200/GB300 NVL72 vs 20-100 kW server-scale). These are outputs. The threshold variables that drive them (model scale, latency SLA, utilisation profile, geographic constraint, compute coupling) are introduced in §02.
02Workload mechanics at the chip
Training and inference stress the same silicon in different ways. The chip-level difference is what propagates outward through the stack.
Figure 2
Chip-level workload mechanics. Training vs inference on the same silicon
Training and inference stress silicon differently. Training is throughput-bound with high east-west traffic for gradient sync. Inference decomposes further into two sub-phases with distinct bottlenecks: prefill (compute-bound, parallelisable, batchable) and decode (typically memory-bandwidth-bound and autoregressive: each sequence generates one token at a time, although many sequences can be decoded concurrently). Three bottleneck modes on the same underlying hardware. Everything downstream (rack integration, network fabric, facility design) responds to which mode dominates.
PREFILL / DECODE DISAGGREGATION
Two sub-phases with different resource needs. Prefill is compute-bound and scales with batch size; decode is typically memory-bandwidth-bound and autoregressive: each sequence generates one token at a time, with many sequences decoded concurrently. Recent serving architectures (NVIDIA Dynamo distributed inference, DistServe, Splitwise) run the two phases on separate worker pools so each phase uses hardware matched to its bottleneck.
KV cache becomes network traffic. When prefill and decode run on separate nodes, the KV cache (populated during prefill) must transfer to the decode node before token generation starts. For large-model prefill/decode disaggregation, KV-cache transfer can push interconnect requirements into the hundreds of GB/s, which pulls RDMA-class interconnect (InfiniBand, RoCE) into inference clusters that would otherwise use pure Ethernet.
Large-model inference does not eliminate east-west traffic. It changes what the east-west traffic is for.
Where single-node inference becomes multi-node. A model fits in a single HBM domain when the working set (weights + KV cache at target context length) stays within the aggregate HBM available on one server or one NVLink domain. Public reference points: H100 SXM node = 8 × 80 GB = 640 GB HBM3; B200 SXM node = 8 × 192 GB = 1.5 TB HBM3e; GB200 / GB300 NVL72 = 72 GPUs × ~192 GB ≈ 13.8 TB HBM3e in one NVLink domain. A 671B-parameter FP8 model with a 1M-token context can require hundreds of GB of KV cache per active sequence, which pushes past any single node into rack-scale coupling. Where the boundary falls determines whether the compute plane fits inside NVLink / NVSwitch or requires RDMA-class scale-out.
KV CACHE MATH · THE INTERCONNECT PRESSURE
Byte footprint per token in the KV cache is a function of architecture:
Architecture matters. A dense Multi-Head Attention (MHA) 671B model would explode the KV cache. DeepSeek V3 / R1 uses Multi-Head Latent Attention (MLA), compressing state into a latent dimension d_c = 512 plus a decoupled RoPE key dimension d_R = 64. Per token per layer: (512 + 64) × 1 byte (FP8) = 576 bytes. Across DeepSeek-V3's 61 layers: 61 × 576 ≈ 34 KB per token at FP8 (~69 KB at FP16). Llama-3.1-405B with Grouped-Query Attention (126 layers, 8 KV heads, d_head = 128, FP16) lands closer to 500 KB per token, more than an order of magnitude larger than the MLA case. Model-architecture choice is therefore a first-order network requirement rather than a downstream detail.
Worked example (AUTHOR SCENARIO). A 128k-token prompt on Llama-3.1-405B (FP8 approximation ~33 GB of KV state) transferred over a 400 Gbps interface (~40 GB/s effective after protocol overhead) takes ~830 ms. That blows a 100 ms TTFT budget on the disaggregated handover alone, unless the transfer is pipelined layer-by-layer, served over multi-rail RDMA, or kept inside rack-scale NVLink.
MLA-style compressed cache stays inside a rack under most working conditions. MHA and GQA at frontier scale force multi-rail RDMA or rack-scale NVLink into the compute plane.
Figure 2b
KV cache footprint per token. MLA (DeepSeek V3 / R1) vs GQA (Llama-3.1-405B) at frontier scale.
Byte-per-token footprint differs by more than an order of magnitude between the two dominant attention architectures at frontier scale. MLA compresses to ~34 KB per token at FP8 (DeepSeek V3 / R1, 61 layers, d_c=512, d_R=64). GQA at 405B parameters lands closer to ~500 KB per token at FP16 (Llama-3.1-405B, 126 layers, 8 KV heads, d_head=128). At high context length, the ratio determines whether the KV cache stays inside a single NVLink domain or forces multi-rail RDMA into the compute plane.
Figure 2c
KV-cache transfer time by fabric bandwidth. 128k prompt at frontier scale. TTFT budget as constraint.
Transfer time is payload divided by effective fabric bandwidth. For a 128k prompt, GQA-style caches (~33 GB at FP8) require an intra-rack NVLink domain to meet a 100 ms TTFT budget on the prefill-to-decode handover; MLA-style caches (~4.4 GB) fit on 800 Gbps inter-node RDMA, and marginal at 400 Gbps. This is why attention-architecture choice propagates directly into fabric requirements: an MLA model can be served on a purpose-built inference cluster with 400 Gbps oversubscribed RoCEv2, while a GQA-405B model at frontier scale needs rack-scale NVLink (or aggressive layer-by-layer pipelining) to hit the same SLA.
THE INFERENCE DIVERGENCE THRESHOLD · FIVE VARIABLES
Inference does not become a separate data-centre architecture because it is called inference. It diverges when the combination of five variables makes the shared AI-factory architecture economically or physically suboptimal.
1. Model scale: how much compute and memory must be colocated. Small models fit on one server; frontier reasoning models need rack-scale coupling.
2. Latency SLA: how close must compute be to the user. Batch and agent workflows tolerate minutes; interactive chat needs sub-second TTFT.
3. Utilisation profile: how predictable and continuously loadable demand is. Training is fully schedulable; user-facing inference is not.
4. Geographic constraint: whether the workload can move to cheap-power geography, or user proximity dominates.
5. Compute coupling: whether inference runs independently on a single node, or requires tightly coupled distributed compute (large model + MoE routing + prefill/decode disaggregation).
Rack density, silicon mix, cooling architecture and network topology are outputs of these five variables. Physical architecture only changes when enough of the five cross their threshold together.
These five variables do most of the work. They don't move together, and they aren't independent. That is why two inference sites can look nothing alike even when they serve the same model.
03Rack-level TDP and form factor
Rack density diverges materially with silicon choice; the ~120-140 kW rack-scale vs 20-100 kW server-scale comparison below carries the point.
Figure 3
Rack-level TDP and form factor. ~120-140 kW GB200/GB300 NVL72 rack vs 20-100 kW server-scale rack
GB200/GB300 NVL72 are rack-scale integrated platforms in the ~120-140 kW class (NVIDIA specifies GB300 NVL72 up to 142 kW/rack). They mandate direct-to-chip liquid cooling; rack-scale power delivery such as the sidecar/800V architecture becomes relevant at this density. Server-scale racks span 20-100 kW, run 1-2U server form factor with mixed silicon, and can often stay air-cooled at the low end. The rack-scale versus server-scale distinction is one of the major physical differences. It drives downstream choices in cooling architecture, fabric selection and power delivery.
04Grid-to-chip for the training data centre
The training DC is what most 800V DC / sidecar / OCP Diablo material describes.
Figure 4
Training DC grid-to-chip. Full stack from utility MV to GPU cold plate
Training DC grid-to-chip stack. Utility MV feed → MV/LV step-down → facility BESS + UPS → sidecar rack (~800V DC output) → rack-integrated GB200 NVL72 platform → chip cold plate. Cooling: facility water plant → row CDU (L2L) → row manifold → cold plate; residual air handles PSU + PDU losses. Network: NVLink intra-rack + InfiniBand inter-rack, high east-west bandwidth for gradient AllReduce (and all-to-all expert routing for MoE, which can occur in both training and inference). Storage: parallel filesystem for training data + object storage for checkpoints + archival tier.
05Grid-to-chip for the inference data centre
The inference DC can diverge at every layer. How much it diverges depends on the regime.
Figure 5
Inference DC grid-to-chip. Diverges at every layer from the training stack
Inference DC grid-to-chip stack. Smaller MV service; simpler UPS (Tier III/IV redundancy focus); sidecar optional (traditional PDU + rack PSU path viable); heterogeneous silicon (GPU / ASIC / LPU / TPU / SoC); wider range of accelerator cost/performance points. Cooling: illustrative zones only (air-dominant below ~40 kW/rack; rear-door/hybrid ~40-80 kW; DTC above), boundaries depend on server config, inlet temp, allowable component temps and facility design. Network: request-plane traffic is north-south dominant for independent-server inference; distributed inference (large models + MoE + PD disaggregation) adds a high-bandwidth east-west compute plane for GPU-to-GPU and KV cache movement. Storage: model weights resident + KV cache + vector DB + model registry.
06Utilisation patterns
For this scenario, training runs flat at 90%+. Inference is spiky, tied to user demand cycles. The 90%+ training figure and the 40-60% average inference figure used through this section are scenario anchors for modelling. Treat them as illustrative.
Figure 6
Utilisation patterns (AUTHOR SCENARIO anchors). Training modelled flat 24/7. Inference is spiky.
For this scenario, training is modelled at 90%+ utilisation around the clock. Inference varies 3-5x peak-to-trough tied to user demand cycles, with weekend and diurnal variation. The utilisation delta is what drives asymmetric capex ROI: training capex earns fully utilised hours; inference capex runs at ~40-60% average utilisation unless spillover batch workloads fill the trough. Facility power and cooling design differs because of this. All percentages here are AUTHOR SCENARIO anchors for modelling.
RAMP-RATE PHYSICS · THE GRID INTERFACE CONSEQUENCE
The inference load profile is not merely non-flat; it is bursty at the second-to-minute scale. Model reload, batch triggers and coordinated request bursts produce di/dt events large enough to matter at the utility interface. Peak-to-trough ratios of 3:1 to 4:1 at facility scale are broadly consistent with published hyperscaler observations. Instantaneous ramps within a single interconnect billing cycle can be larger.
Facility-side mitigations (AUTHOR SCENARIO, not universal):
• Facility BESS or kinetic flywheels at the substation for peak shaving and ramp-rate limiting; sizing at ~10-50% of facility peak MW depending on utility contract terms.
• Rack-level BBU engineered for transient smoothing (sub-second capacitor + short-duration battery) rather than three-minute ride-through.
• Software-defined dynamic power capping: over-provision compute density, under-provision utility MW, and clip the top of the ramp in scheduler firmware.
• Utility contract structure: some interconnects prohibit certain ramp rates or charge demand penalties for peak spikes. Contract terms materially affect facility topology choice.
Step-load physics runs in different time domains. Silicon-level dynamic voltage and frequency scaling (DVFS) drops load from 100% to ~20% in microseconds, producing high-frequency ringing on the rack busbar. Token batch transitions run in milliseconds to seconds, producing low-frequency surges through the facility UPS and MV transformer. The mitigation stack has to match the time domain.
BBU chemistry matters. Standard lithium-ion (LFP / NMC) rack BBUs have moderate internal resistance and limited C-rates. They handle 2-3 minutes of ride-through, and are the wrong device class for high-cycle di/dt smoothing at millisecond timescales; sustained micro-cycling degrades them thermally. Millisecond-scale di/dt on the 800V DC bus wants a different device class: ultracapacitors or high-C-rate lithium titanate (LTO) cells integrated at the intermediate bus, sized for absorb-and-return rather than long-duration discharge. Facility-side, flywheels or BESS handle minute-scale ramp-rate compliance (MW / min under interconnect terms). Rack BBU plus intermediate LTO / ultracap plus facility BESS is a stack matched to distinct time domains, each device class doing what it is built for.
Partial PUE consequence at low load. Legacy chiller plants and cooling towers fall off their optimal efficiency curve when facility load drops to ~40% overnight. Facility partial PUE degrades unless variable-frequency drives (VFDs) and staged CDUs are specifically tuned for low-load turndown, or spillover batch workloads fill the trough. The 3-5x peak-to-trough utilisation profile therefore carries a facility-efficiency cost on top of the capex ROI drag on the compute itself.
Thermal loop inertia has a different time constant. When an inference cluster spikes from 20% to 100% load during a batch trigger or prime-time surge, GPU die temperatures move within milliseconds. The facility water loop responds in tens of seconds to minutes: fluid transit through hundreds of metres of secondary piping plus the heat capacity of the water mass together set the mechanical response time.
Two mechanical stress paths. Variable-speed pumps on the secondary CDU-to-rack loop actuate valves rapidly under dynamic load, producing pressure transients and water hammer in blind-mate quick disconnects. In low-density air / hybrid facilities (Q2 / Q3), severe diurnal cycling drives thermal expansion and contraction on cold-plate solder joints, dry-break couplings, and CDU heat exchangers. Failure rates accelerate compared to flat 24 / 7 training loads. Facility-level dynamic flow modulation, variable-ΔT loop control and CDU MTBF at inference-scale cycling are line items in a Q3 or Q4 diligence that don't appear in a Q1 training-DC diligence.
07Cooling architecture
GB200/GB300-class rack density (~120-140 kW) mandates DTC. Inference rack density often does not.
Figure 7
Cooling architecture by rack density. Air, hybrid, DTC zones and where training vs inference land
Cooling follows rack density, not the word "inference". Typical zones: air-cooled works to roughly 40 kW/rack (depends on server config, inlet temp, rear-door design); hybrid rear-door in the roughly 40-80 kW band; DTC above. Actual thresholds vary by platform, workload duty cycle, allowable inlet temperature and facility conditions. Inference on efficient silicon (Groq LPU, Cerebras, TPU v5e, Qualcomm Cloud AI) can remain in the air-cooled zone at appropriate server/rack configurations; H100/L40S clusters can move into hybrid cooling as rack density rises; GB200/GB300 NVL72 mandates DTC regardless of whether the workload is training or inference. Density is the trigger. The workload label is the wrong variable.
08Networking + storage stack
Training needs high east-west bandwidth and parallel filesystem. Inference needs north-south egress and a resident model + KV cache stack.
Figure 8
Where inference stops looking like training: the network and storage stack
Training network is a non-blocking east-west fat-tree (InfiniBand NDR/XDR) with parallel filesystem storage. Inference has two network planes: a request plane (user to load balancer to server) and a compute plane (GPU-to-GPU + KV-cache movement + all-to-all expert routing for MoE). Small independent-server inference uses only the request plane. Large distributed inference (GB200 NVL72 serving 1T+ MoE, or disaggregated prefill/decode) uses both planes; the compute-plane fabric is rack-scale NVLink/NVSwitch within the NVL72 domain and RDMA-class Ethernet or InfiniBand between nodes. Storage is HBM-resident model + KV cache per session + vector DB for RAG.
TWO NETWORK PLANES FOR INFERENCE
Request plane. User request enters via multi-ISP peering + anycast BGP → load balancer → API gateway → inference server. Ethernet-based, standard datacentre topology.
Compute plane. Inside the inference cluster: GPU-to-GPU tensor exchange (for model-parallel inference), KV-cache movement (for disaggregated prefill/decode), all-to-all expert routing (for MoE). Rack-scale NVLink/NVSwitch inside the GB200/GB300 NVL72 domain; RDMA-class Ethernet or InfiniBand between nodes. A north-south-only model of inference misses this compute plane.
Small independent-server inference uses only the request plane. Large distributed inference (GB200 NVL72 serving 1T+ MoE, or PD-disaggregated deployments) uses both. Inference network requirements depend on the workload regime.
FABRIC DIVERGENCE · THE BIGGEST CAPEX SWING
Power and cooling look similar across training and rack-scale inference. The topology decouples on the fabric.
Training clusters demand full-bisection east-west bandwidth to prevent GPU stalling during all-reduce and pipeline exchange. Design point: non-blocking fat-tree, InfiniBand NDR / XDR or Ultra Ethernet, deep spine tiers, high optics count.
Purpose-built inference clusters (Q3) commonly operate on oversubscribed spine layers or pure scale-up pods with RoCEv2 egress, even when running MoE with all-to-all inside the rack-scale NVLink domain.
Cluster BOM implication (AUTHOR SCENARIO at ~1 MW cluster class, not benchmark): networking capex lands at roughly 20-25% of total cluster BOM for a non-blocking training fabric, and roughly 8-12% for a purpose-built inference fabric with oversubscription. The difference is largely optics count and switch-tier depth, and it changes the per-MW capex of a facility optimised for inference-only tenancy.
Intra-pod versus disaggregated. The oversubscription argument holds when tensor parallelism and MoE all-to-all stay inside a single rack-scale NVLink domain. It stops holding the moment prefill and decode are physically separated across rows or rooms. The KV-cache handover becomes an elephant flow on the critical path for TTFT, and the math in §02 (~830 ms for a 128k prompt of Llama-3.1-405B state over a 400 Gbps interface) shows why.
Disaggregation does not eliminate fabric capex. It swaps symmetric all-reduce bisection bandwidth for high-throughput point-to-point burst bandwidth. Oversubscribing the spine without priority-flow control (PFC) or coordinated packet reservation lets elephant flows collide, causing hash collisions and tail-latency blowups on decode workers. A cluster running disaggregated prefill/decode across nodes needs low-oversubscription (or non-blocking) links between the two pools, even if the same cluster tolerates oversubscription for other traffic. Fabric capex percentage lands between the two anchor cases depending on the disaggregation footprint.
The ECMP trap. Standard leaf-spine oversubscription routes flows using Equal-Cost Multi-Path (ECMP) hashing. Under disaggregated serving (Dynamo, DistServe, Splitwise), KV-cache transfers are elephant flows: ECMP hashes them into the same physical spine links, driving buffer exhaustion, packet drops, and tail-latency blowups on the decode worker.
Architectural countermeasures. Packet-sprayed RoCEv2 (or Ultra Ethernet Consortium standards) with dynamic load balancing breaks elephant flows across all available paths at packet granularity, avoiding the ECMP hash-collision failure mode. Alternative: rail-optimised point-to-point KV-transfer crossbars separated physically from the general request plane. Either approach bifurcates the network into a cheap commodity front-end (request plane) and a bespoke burst-optimised backend fabric (compute plane) with dedicated traffic engineering. Disaggregation therefore does not simply relax network capex; it splits the network into two distinct fabrics with different unit economics.
09Silicon mix
Training is concentrated on a relatively narrow set of high-end accelerator ecosystems. Inference has a broader hardware design space.
Figure 9
Silicon mix by regime
Training silicon is concentrated around a small set of high-end accelerator ecosystems (NVIDIA GB200/GB300, AMD MI300X/MI325X, AWS Trainium, Google TPU) with TSMC advanced node + HBM supply-chain concentration. Inference silicon has a broader design space because the optimisation target shifts from maximum training throughput toward cost/token, latency and memory bandwidth. NVIDIA and AMD span dual-use accelerators; Google TPU v5e and AWS Inferentia2 are examples of hyperscaler-specific inference silicon; specialist architectures (Groq LPU, Cerebras WSE, Meta MTIA and others) widen the design space further. The wider vendor and fab-node distribution reflects that inference workloads accept more architectural variance than training.
PHYSICAL ENVELOPE VARIES ACROSS SILICON FAMILIES
Different silicon families sit at different points in the power / cooling / interconnect envelope. A facility optimised for one footprint carries stranding risk when the tenant workload rotates through others.
• NVIDIA GB200 / GB300 NVL72: 72-GPU rack-scale liquid-cooled platform, ~120-140 kW / rack, 100% direct-to-chip liquid cooling, sidecar / 800V DC power delivery, InfiniBand or Ultra Ethernet scale-out.
• Google TPU v5e / v6e: pod-scale designs with different air / liquid hybrid arrangements and different bus architectures; rack densities and cooling loops are Google-internal.
• AWS Trainium2 / Inferentia2: hyperscaler-internal rack designs with their own bus and cooling architectures, optimised for AWS-specific workloads.
• Groq LPU and other SRAM-heavy inference engines: different thermal dissipation curves and step-power profiles; typically lower rack densities than rack-scale GPU platforms.
Underwriting risk. A colo tuned exclusively to a single vendor rack footprint (bespoke 120 kW liquid loop, bespoke busbar) carries architectural-bet risk over a 10-15 year lease as tenant workloads rotate through ASIC generations. The IC-memo question is whether the physical envelope can absorb rack-scale NVLink AND hybrid air/liquid TPU-class AND SRAM-driven inference silicon within its design life.
10Power chain implications
Training-scale rack density pulls sidecar / 800V DC architecture forward. Inference at moderate density stays on traditional PDU + rack PSU longer.
Figure 10
Power chain implications. Sidecar / 800V DC pull vs traditional PDU longevity.
Moderate-density inference can extend the commercial life of conventional PDU + rack-PSU architectures. High-density inference can pull the same 800V / rack-scale power architecture being developed for training. The same UPS, PDU, PSU, DC-DC and electrical vendors can serve both regimes; architecture and rack density determine the particular product mix. Traditional UPS/PDU vendors retain scope at moderate density; sidecar and 800V DC architectures become increasingly relevant as rack densities move into the ~100 kW-and-above range, whether training or inference.
11Grid connection and geography
Training generally has much greater geographic flexibility than strict-SLA inference and can trade location for cheap power and capacity.
Figure 11
Geography: cheap power vs user proximity
Training DCs can trade geography for cheap 24/7 power and capacity (representative regions: US Sun Belt, Nordics, Middle East). Strict-SLA inference has less freedom to make that trade, pushing some deployments toward major metros and regional hubs. The resulting site requirements can pull the two workloads toward different real-estate and supplier ecosystems.
LATENCY BUDGET DECOMPOSITION · WHY GEOGRAPHY BINDS SOME REGIMES
User-observable interactive-inference latency has three components: network transit (round trip between user and facility), model inference time (TTFT for the first token; ITL for each subsequent token), and application / serving stack overhead.
Formal decomposition as inequality constraints against SLA:
Fibre reality check. Silica glass has refractive index n ≈ 1.468, so signal propagation is c/n ≈ 204 km/ms: about 4.9 µs per km one-way, or ~10 µs per km round-trip. Fibre routing is rarely a straight line; a typical optical tortuosity factor of 1.3-1.4× means an 800 km metro radius carries roughly 10.5-11.5 ms of unpadded transport RTT before any router hop, transport-layer overhead or peering asymmetry. That is already above 20% of a 50 ms ITL budget before compute runs.
Interactive worked example (AUTHOR SCENARIO). Consider a 50 ms ITL target with roughly tens of tokens generated per second. If the network round-trip budget is capped at ~10-20 ms for consistent user experience, the fibre distance between user and facility falls to roughly 500-800 km at the speed-of-light limit alone. That range is where the "strict-SLA" side of the matrix lives. Metro and regional hub geography follows from the ITL budget, not from a workload preference.
Batch and asynchronous reasoning. Multi-second or minute-scale response budgets remove the geography lock entirely. A 5-minute deep-search agent can run on a remote 500 MW campus in Wyoming or Scandinavia at negligible latency cost. That is where the "relaxed-SLA" side of the matrix lives, and why the same underlying model can be deployed on two entirely different physical stacks depending on how the SLA is written.
12Cost per query decomposition
The cost stack shifts across model size and hardware choice.
Figure 12
Cost per query decomposition. What drives $/1M output tokens across model size.
Cost per query decomposes across compute, memory, networking, power and facility opex. The bars above are AUTHOR SCENARIO ranges. Treat them as illustrative decomposition, not benchmark numbers. Actual $/1M tokens depends on: input/output token ratio, model, quantisation, batch size, utilisation, accelerator price + depreciation period, electricity, cooling, networking, SLA, software stack, and whether the source is provider-API pricing or infrastructure economics. What holds across the decomposition: compute typically dominates, memory + KV cache share grows with context length, and custom ASICs (Groq LPU, Cerebras, TPU v5e, Meta MTIA, AWS Inferentia2) can collapse compute cost dramatically for fit workloads.
13Four inference regimes
For the scenario matrix, five variables are reduced to two dominant axes: model regime × latency SLA. The other three (utilisation, geography, compute coupling) determine the physical intensity within each quadrant.
Figure 13
Four scenarios for the training/inference split. Model regime × latency SLA.
Four regimes on two axes: latency SLA × model regime. Q1 (plateau + relaxed) is the current default. Consolidated training + inference DCs. Q2 (plateau + strict) is metro edge fleet. CDN-like architecture for AI. Q3 (grow + relaxed) is purpose-built inference DCs for big-model batch / agent workloads. Q4 (grow + strict) is metro giant DCs.
14Detailed topology per scenario
The physical stack for each quadrant of Figure 13.
Figure 14a
Consolidated. Training + inference share the same DC. Current default. (Q1)
Q1 Consolidated. Training + inference share the same DC. Full training-DC stack applies: sidecar / 800V DC, DTC cooling, IB fabric, parallel filesystem, power-cheap geography. Inference workloads fill utilisation troughs via scheduler priority. The economics work when workloads sustain high utilisation. Current default for hyperscaler AI infrastructure 2022-2026.
Figure 14b
Metro edge fleet. Small models on colo racks under strict SLA. (Q2) · ILLUSTRATIVE SCENARIO
Q2 Metro edge fleet. 10-50 small colo-scale DCs across major metros and regional hubs. 5-20 MW per site. Efficient 7B-70B models resident on mid-range GPU / Groq LPU / Qualcomm Cloud AI at 20-40 kW/rack. Air-cooled. Traditional Tier III/IV UPS + PDU. Multi-ISP peering with anycast BGP for lowest-latency serving. Model updates propagate from central training DC. Colo landlords are one obvious beneficiary of this regime, though the actual value distribution depends on which vendors capture the metro-fleet buildout.
Figure 14c
Purpose-built inference DCs. Big models on cheap-power geography with relaxed SLA. (Q3) · ILLUSTRATIVE SCENARIO
Q3 Purpose-built inference DCs. Cheap-power geography (same as training), but simpler power chain (traditional PDU + rack PSU), no InfiniBand (Ethernet leaf-spine), air / hybrid cooling, specialised inference silicon (Groq LPU / Cerebras / TPU v5e / Inferentia2). The economic case strengthens when workloads are stable, batchable and highly utilisable. Utilisation 70-90% via batch queue. This is the awkward case. If latency thresholds relax faster than model sizes shrink, Q3 collapses back into Q1 and there is no independent reason to build it as its own DC type.
Figure 14d
Metro giant. Big models under strict SLA. The regime least likely to scale on economics alone. (Q4) · ILLUSTRATIVE SCENARIO
Q4 Metro giant DCs. GB200-class silicon deployed in metro real estate for tight-SLA big-model inference. Same power chain (sidecar + 800V DC) and cooling stack (full DTC) as Q1 training DCs, but constrained by metro power sourcing, water rights, and land availability. Hybrid network (Ethernet peering + partial InfiniBand). Illustrative scenario: $/query ~3-5x above Q1. Economically defensible when user-facing SLA and query value justify the premium. Technically feasible; the regime least likely to scale on economics alone. Q4 is the one I would not underwrite from latency alone.
Q4 · UTILITY QUEUE vs MODEL HALF-LIFE
Q4's binding constraint is timing. Even when the physical case works, the utility-interconnect and permitting lead time is a first-order underwriting problem.
Interconnect lead time. A 200-500 MW facility in a Tier-1 metro (Northern Virginia, Frankfurt, Slough, Tokyo, Singapore) requires a 115-230 kV transmission interconnect. Current utility queues in these zones commonly run 5-8 years to substation energisation, before environmental permitting, water-rights acquisition and facility construction.
Model architecture half-life. Frontier model distillation and custom ASIC architectures have typically evolved on an 18-24 month cadence. Over a 5-8 year utility-interconnect window, that translates to two to three architecture generations of change. Compression, distillation, sparsity, MoE routing efficiency and edge silicon capability each reduce the memory and compute footprint per unit intelligence delivered.
The underwriting mismatch. A 300 MW metro giant sited in 2026 and energised in 2032 will serve a model architecture that likely does not exist yet, and may not need the physical envelope the site was designed around. Q4 therefore combines the highest capex, the longest lead time, and the shortest useful architectural life. The lead time of metro utility interconnection exceeds the architectural half-life of frontier model footprints. That is why the Q4 case cannot be built from latency alone.
15Stranded architecture. The infrastructure-risk view.
Infrastructure risk here is a match problem. Does today's physical architecture serve tomorrow's inference regime, or has it been built for the wrong workload. Build an ~150 kW-class 800V rack + liquid facility (as a scenario) for a workload that later turns out to be low-density latency-sensitive inference, and you have stranded capex. Build metro air-cooled colo for a workload that turns out to require frontier reasoning at 100+ kW/rack, and you have the reverse. The risk quadrant below charts model-efficiency progress against silicon-efficiency progress; each quadrant produces a different stranded-capex profile.
Figure 15
Risk quadrant. What could displace purpose-built inference DCs. Model efficiency × silicon efficiency.
Risk quadrant for purpose-built inference DCs. Two axes: model efficiency (algorithmic progress) × silicon efficiency (chip progress). Q1 both slow. Purpose-built inference DCs dominate. Q2 model efficiency wins. Inference fits on general silicon and moves to consumer / metro edge. Q3 custom silicon wins. Inference DC design becomes ASIC-specialised. Q4 both accelerate. Inference converges toward consolidated training-DC use or edge deployment; purpose-built inference-DC category loses rationale.
STRANDED-CAPEX SCENARIOS
~150 kW-class 800V rack + liquid facility (scenario) → low-density latency-sensitive inference. Infrastructure optimised for the wrong workload. Rack-scale power chain and liquid loop stay stranded at low utilisation. Geographic mismatch to user proximity.
Metro air-cooled colo → frontier reasoning inference. Density mismatch: a 40 kW/rack air envelope cannot accommodate a full GB300 NVL72-class rack. Retrofit to DTC requires a facility cooling architecture capable of rejecting the added liquid heat load, which metro colo sites may not have.
Purpose-built inference DC on Groq LPU → model architecture shifts away from LPU-fit workloads. ASIC lock-in strands the silicon investment. Sidecar / cooling / facility remain reusable but the semiconductor content depreciates fast.
Cheap-power hyperscale inference DC → sovereign / metro compute mandates. Regulatory shift to data residency reduces the addressable workload. Cheap-power siting no longer optimal.
16What would falsify this framework
There are five ways I could be wrong.
FALSIFIERS
1. Inference remains overwhelmingly centralised. If frontier models continue growing and latency SLAs stay relaxed enough that no metro deployment is required, Consolidation stays the answer and the other regimes never scale. Test: track OpenAI / Anthropic / xAI inference footprint by geography over 12-24 months.
2. Model efficiency wins the race. If distillation, sparsity and MoE routing shrink frontier-model inference below what fits on a single node, purpose-built inference DC (Q3) loses its scale rationale. Test: track cost per query at a fixed quality / capability target across efficient (Llama, DeepSeek, Qwen) and frontier models.
3. Compute efficiency outruns demand. If per-token compute cost drops faster than query volume grows, inference infrastructure needs (in aggregate) plateau or shrink. The four regimes converge back toward Q1. Test: track $/1M tokens vs global inference query volume growth.
4. Serving software erases distributed-vs-centralised distinctions. If disaggregated serving (Dynamo, DistServe, Splitwise) makes heterogeneous distributed inference economically competitive with centralised systems, the geographic threshold weakens. The metro / regional / hyperscale continuum becomes a software problem, not an infrastructure one. Test: track inference deployments running on Dynamo-style disaggregated architectures across geographies.
5. Geography becomes economically irrelevant. If network latency, model compression, caching and serving optimisation reduce the economic value of physical proximity below the metro-DC premium, the metro/edge regimes lose their infrastructure rationale. Inference converges back to cheap-power geography. Test: track user-observable TTFT and inter-token latency for centralised vs metro-deployed serving of the same model at fixed cost/query.
17Value migration and supplier implications
If inference fragments geographically and architecturally, the value pool fragments with it. The AI infrastructure capex cycle is currently concentrated around training-scale accelerator infrastructure. As inference diversifies, the economic bottlenecks broaden outward to serving silicon, memory bandwidth, networking, orchestration, metro capacity, peering and power efficiency.
Figure 17
Where value migrates as inference matures
Training-dominant: the AI infrastructure capex pool remains heavily concentrated in rack-scale accelerator infrastructure, advanced power and advanced cooling. Mixed serving: training silicon runs both workloads on shared racks; consolidation still wins in most cases. Regime-specialised: training concentrates in cheap-power geography; inference splits across metro edge (Q2), purpose-built (Q3) and metro giant (Q4). Rack DC/DC survives across the whole transition. Which vendor holds which layer, and when, is the underwriting question.
18Underwriting the inference DC
For infrastructure sponsors, colo landlords and IC memos, the framework above translates into specific underwriting profiles per regime. The matrix below summarises the target physical and economic metrics per regime; each column is an AUTHOR SCENARIO calibrated against the physical anchors elsewhere in this essay.
Figure 18
Underwriting sensitivity matrix. Target physical envelope, cooling stack, grid capacity factor and stranding risk per regime. AUTHOR SCENARIO for IC-memo diligence.
Underwriting profile per regime. Q1 mega-campus targets rack-scale liquid infrastructure at cheap-power geography; the exposure is silicon obsolescence and power availability. Q3 purpose-built inference is hybrid-cooled with mid-tier density; the exposure is ASIC vendor churn and overspecified fabric. Q2 / Q4 metro is anchored at strict-SLA sites where the constraint is retrofit ceiling: floor loading, water plumbing and MV interconnect capacity that a brownfield colo may or may not have.
Per-regime dimensions for IC-memo integration. All values AUTHOR SCENARIO, calibrated against the physical anchors elsewhere in this essay.
DIMENSION
Q1 · CONSOLIDATED
Q2 · METRO EDGE
Q3 · PURPOSE-BUILT
Q4 · METRO GIANT
Typical accelerator
GB200 / GB300 NVL72
L40S / H200 / custom ASIC
B200 / MI350 / Groq LPU
GB300 NVL72 / TPU v6e
Target rack density
120-140 kW / rack
15-35 kW / rack
40-80 kW / rack
100-140 kW / rack
Primary cooling topology
100% DTC liquid (W32 / FWS)
Air (CRAC / CRAH) + rear-door
Hybrid DTC / air
100% DTC liquid (chilled loop)
Network fabric architecture
Non-blocking fat-tree (IB / UEC)
Standard top-of-rack Ethernet
Oversubscribed RoCEv2 (2:1 or 3:1)
Low-oversubscription RoCEv2 / IB
Network capex (% cluster BOM)
20-25%
<5%
8-12%
15-18%
Capacity factor / load profile
90%+ flat baseload
35-50% diurnal swing
50-70% (batch-padded)
40-60% diurnal peak
Power distribution
800V DC busbar + sidecar
415V AC / standard PDU
48V or 800V DC
800V DC busbar + sidecar
Primary stranding risk
Stranded power if models shrink
Density ceiling (cannot retrofit to DTC)
ASIC / architecture obsolescence
High $/MW build with weak metro peering
All values AUTHOR SCENARIO for illustrative underwriting. Site-specific values require diligence at platform, contract and interconnect level.
CAPACITY FACTOR · THE CAPEX AMORTISATION ARITHMETIC
The capacity-factor row of the matrix drives the deal-level economics of an inference DC. For an infrastructure sponsor underwriting an accelerator rack (roughly $3.5M for a GB200 NVL72, or roughly $500k for an inference ASIC rack) depreciated straight-line over a 3-4 year lifecycle, the capital cost per operational hour is fixed:
CapEx per hour = Total rack CapEx / (Years × 8760 × Capacity factor)
What the arithmetic does. At a 90% training capacity factor (~7,884 productive hours per year), amortisation runs efficiently. At a 45% inference capacity factor (~3,942 productive hours per year), the hourly capital charge literally doubles at the same rack cost. Values AUTHOR SCENARIO; the ratio is the point, and the absolute rack price is illustrative only.
Why Q3 operators chase spillover workload. The doubled hourly capital charge is what forces Q3 and Q4 operators to aggressively backfill diurnal troughs with un-checkpointed background workloads: synthetic data generation, model distillation runs, embedding pre-computation, feature-store rebuild. Without a synthetic baseload to fill the night-time trough, dedicated inference facilities carry a structurally depressed IRR relative to a training campus at the same rack cost.
Underwriting takeaway. The Q3 economic case stands on the operator's ability to source spillover workload. The physical envelope alone does not close the underwriting. Ask the sponsor: what fills the trough, and at what marginal revenue per productive GPU-hour?
IC-MEMO CHECKLIST BEFORE FUNDING AN INFERENCE DC
Regime targeting. Which regime does the facility target, and can it accommodate the adjacent regime without retrofit? Q1 to Q4 crossover (rack-scale into metro RE) and Q2 to Q3 crossover (edge fleet vs cheap-power hyperscale) are the two most common shifts.
Grid interconnect and ramp-rate agreement. Does the utility contract permit inference-scale di/dt without demand penalties or throttling? What is the ramp-rate limit written into the interconnect study? Contract terms materially affect facility topology choice.
Rack density envelope. Does the facility floor loading, water plumbing and power delivery envelope support ~120-140 kW rack-scale AND 40-80 kW hybrid AND 20-40 kW air-cooled tenants within its design life? Retrofit windows narrow fast once the shell is built.
Cooling architecture flexibility. Can the facility water plant absorb the added liquid heat load required to retrofit for direct-to-chip? Or is the plant sized only for air CRAC? Retrofit to DTC requires a facility cooling architecture capable of rejecting the liquid heat load, which metro colo sites may not have.
Silicon-agnostic vs bespoke. Is the physical envelope tuned to a single vendor footprint (NVIDIA rack-scale, TPU pod, Groq rack)? What is the stranding risk if tenant workload rotates through a different ASIC over a 10-15 year lease? Silicon-agnostic envelope is the default underwriting position; bespoke tuning is a concentrated architectural bet with a specific tenant thesis behind it.
Method + sources. Anchor references from OCP Open Rack v3 and Diablo 400 material for training rack specifications; NVIDIA GB200 NVL72 and Vera Rubin platform disclosures for chip-level TDP and interconnect; public disclosures on Groq LPU, Cerebras WSE, AWS Inferentia2, Google TPU v5e for inference-specific silicon; public case studies on hyperscaler AI infrastructure geography for grid-connection patterns.
Rack-density assumptions in Figure 3, utilisation anchors in Figure 6, and cost-per-query decomposition in Figure 12 are AUTHOR SCENARIO illustrative estimates. Supplier quotations and disclosed product BOMs are outside the source set. The four-regime matrix in Figure 13 is directional; the actual split between training and inference infrastructure depends on model efficiency progress, silicon cost trajectory, and hyperscaler procurement choices.
No advisory relationship with any named party. Nothing here is investment advice.