GKE TCPXO Networking Prerequisites
For the H100 GKE COS training recipes (h100-gke-cos-training*, on a3-megagpu-8g nodes), GPUDirect TCPXO enables high-speed inter-node GPU communication on GKE. Without it, the NVIDIA Collective Communications Library (NCCL) falls back to TCP (~4 GB/s vs ~340 GB/s with TCPXO).
A100 (a2) exception: the
a100-gke-cos-training*recipes intentionally omit thegke-nccl-tcpxocomponent — GPUDirect TCPXO targets H100a3-megagpu-8gnodes, not the A100a2-highgpu/a2-ultragpumachine family. The prerequisites below do not apply to A100 GKE recipes, and the generated A100 bundle does not install the TCPXO DaemonSets.
Infrastructure Prerequisites
GKE clusters must have multi-NIC networking configured before deploying AICR bundles:
- Multi-NIC networking enabled (8 GPU NICs per a3-megagpu-8g node)
Network+GKENetworkParamSetCRs configured for GPU NICs (cluster-specific, not managed by AICR)nccl-tcpxo-installerDaemonSet on GPU nodes (included in AICR bundle)nri-device-injectorDaemonSet on GPU nodes (included in AICR bundle)
Important: The GPU node pool must be provisioned with only the 8 GPU NIC
networks (gpu-nic-0 through gpu-nic-7). Do not include a gVNIC additional
network — it takes a GPU NIC PCI slot (0000:06:00.0), leaving only 7/8 GPUs
available for TCPXO.
Workload Pod Configuration (NRI Profile)
The NRI profile mounts the host’s /sys and /proc/sys into the TCPXO daemon
container, giving it PCI sysfs visibility without hostNetwork. This preserves
pod networking (DNS, network policies, service mesh compatibility).
Key properties:
hostNetwork: false— workloads get proper pod networkingprivileged: false— tcpxo-daemon uses onlyNET_ADMINandNET_BIND_SERVICE/sysmounted as/hostsysfs— provides PCI sysfs visibility for GPU enumeration/proc/sysmounted as/hostprocsysfs— allows kernel network tuning- NRI annotations inject GPU devices and multi-NIC interfaces
- Requires NRI device injector DaemonSet deployed on GPU nodes
See demos/workloads/training/gke-nccl-test-tcpxo.yaml for a complete 2-node NCCL benchmark example.
NCCL Plugin Version Matching
The NCCL test container image must match the cluster’s installed TCPXO plugin version. Check with:
Update the nccl-plugin-gpudirecttcpx-dev image tag in your workload to match.
Running the NCCL Benchmark
Automated (recommended): aicr validate
The GKE H100 training recipe (h100-gke-cos-training) already selects the
automated nccl-all-reduce-bw performance check (floor >= 300 GB/s), so the
benchmark is fully driven for you:
The validator runs the all-reduce sweep over the validator-fixed 1K–16G
message-size range and asserts the busBW floor. It deploys the
TrainingRuntime (validators/performance/testdata/h100/gke/runtime.yaml)
plus the shared TrainJob (validators/performance/testdata/trainjob.yaml)
that actually launches the worker Pods. The runtime template carries the GKE
multi-NIC and NRI device annotation keys (networking.gke.io/interfaces and
devices.gke.io/container.tcpxo-daemon) as ${...} placeholders, and the
validator discovers and substitutes their concrete values dynamically at
apply time — the interface list from the cluster’s discovered GPU NIC networks
and the NRI device annotation sized to the per-node GPU count. Because those
values are resolved at runtime, the framework manifest cannot be reproduced by a
plain kubectl apply / envsubst of runtime.yaml alone, so running the
framework path by hand is not supported. Use aicr validate for the
framework-equivalent benchmark.
Prerequisites: the automated check needs at least 2 schedulable GPU nodes with allocatable GPUs — the all-reduce measures East-West fabric between nodes. The validator counts discovered schedulable GPU nodes: with fewer than 2 it returns a successful skipped result without measuring bandwidth. The selected nodes also need free GPU capacity (the TrainJob places a full GPU node per worker); if the GPUs are already occupied the workers stay Pending and the check times out — it does not skip. If Kubeflow Trainer is not already installed, the validator downloads and installs it (Trainer v2.2.0 from GitHub, then removes it afterward), so the validator environment needs GitHub egress.
Manual standalone benchmark
To exercise the GPUDirect TCPXO data path directly with raw Pods and a TCPXO
daemon sidecar (independent of the validator framework — useful for debugging),
use the standalone demo manifest. Each pod runs a tcpxo-daemon sidecar
(manages the GPUDirect TCPXO data path) plus the nccl-test container.
NRI profile (recommended, no hostNetwork):
Interpreting results
Troubleshooting
RxDM detects 7/8 GPUs
If RxDM reports Number of GPUs detected 7 is not equal to the actual number of GPUs 8, check the GPU node pool’s additional network configuration:
If a gVNIC network appears in the list, it is taking a GPU NIC PCI slot. Remove the gVNIC from the node pool and reprovision the GPU nodes.
You can also verify the node NIC mapping:
All 8 GPU NIC PCI addresses should be mapped to eth1–eth8. If a gVNIC is present, it typically occupies PCI 0000:06:00.0, displacing the first GPU NIC.
RxDM detects 0/8 GPUs
If RxDM reports Number of GPUs detected in the PCI tree 0, the pod is missing the /sys hostPath mount. Ensure /sys is mounted as /hostsysfs in the tcpxo-daemon container. Without it, the container network namespace hides the host PCI sysfs tree entirely.
Performance Reference
Validated on GKE 1.35 / a3-megagpu-8g (2 nodes, 16 GPUs):