What is the primary purpose of running an NCCL burn-in test on a new GPU cluster?
Correct Answer: C
The primary purpose of an NCCL burn-in test is to stress GPU communication links and expose hardware or interconnect problems before the cluster is released to production. NCCL tests exercise collective communication patterns such as all-reduce, broadcast, reduce-scatter, and all-gather. These operations are central to distributed AI training, where GPUs across multiple servers must exchange gradients and model data efficiently. A burn-in test runs communication repeatedly over time, helping reveal unstable cables, weak links, switch issues, HCA problems, GPUDirect RDMA faults, driver mismatches, topology issues, or intermittent errors that may not appear in a short validation. GPU detection and driver visibility are normally checked with nvidia-smi and related health commands, not an NCCL burn-in. NCCL does not automatically tune deep learning frameworks, and it is not intended to replace application-level benchmarking with real user training scripts. In NVIDIA AI infrastructure, NCCL burn-in is a pre-production confidence test that validates the fabric under sustained GPU communication load, reducing the risk of failed large-scale training jobs.
NCP-AII Exam Question 12
During cluster deployment, the UFM Cable Validation Tool reports " Wrong-neighbor " errors on multiple InfiniBand links. What is the most efficient way to resolve this issue?
Correct Answer: C
In large-scale InfiniBand fabrics, such as those in NVIDIA DGX SuperPODs, maintaining an exact cabling topology is mandatory for the Adaptive Routing and Fat-Tree algorithms to function correctly. A " Wrong- neighbor " error occurs when the Unified Fabric Manager (UFM) detects that a cable is connected to a port other than the one specified in the master topology map (often a .csv or .topology file). UFM uses LLDP (Link Layer Discovery Protocol) or Subnet Management packets to identify the GUIDs on both ends of a link. The most efficient remediation is to cross-reference the live LLDP data provided by UFM with the intended design. This allows the engineer to identify if the error is a physical mis-cabling (swapped ports) or a logical error in the topology file. Rebooting switches (Option A) will not fix a physical patch error, and disabling FEC (Option D) would lead to catastrophic signal loss on 400G (NDR) links without addressing the underlying routing logic issue. Correcting the physical patch or updating the topology file ensures the fabric ' s " Ground Truth " is restored.
NCP-AII Exam Question 13
An administrator installs NVIDIA GPU drivers on a DGX H100 system with UEFI Secure Boot enabled. After reboot, the drivers fail to load. What is the first action to resolve this issue?
Correct Answer: C
UEFI Secure Boot is a security standard that ensures only digitally signed code is allowed to execute during the boot process. Since NVIDIA GPU drivers include kernel modules (nvidia.ko), they must be signed by a key trusted by the system ' s firmware. When drivers are installed on a DGX system with Secure Boot active, the installation process generates a unique Machine Owner Key (MOK). However, the Linux kernel will not trust this key until the user manually authenticates it at the " Shim " level before the OS loads. Upon the first reboot after installation, the system enters the " MOK Management " blue screen. The administrator must select " Enroll MOK " and enter the temporary password created during the driver installation. Failing to do this results in the kernel rejecting the nvidia module, leading to an " Unable to determine the device handle for GPU " error in nvidia-smi. Disabling Secure Boot (Option A) would resolve the symptom but violates the security posture of the AI infrastructure.
NCP-AII Exam Question 14
You must validate all physical cabling as part of the network bring-up phase in a new NVIDIA GPU cluster deployment. The design requires you to confirm that each cable matches the intended topology, all links are functional, and future troubleshooting and scalability are supported. Which two steps are essential to an effective recommended cabling validation process during cluster deployment? Pick the 2 correct responses below.
Correct Answer: C,D
The correct steps are incremental validation and comparison against the planned topology. In NVIDIA AI infrastructure, especially DGX BasePOD, DGX SuperPOD, InfiniBand, or Spectrum-X deployments, cabling accuracy is not a cosmetic requirement. The physical topology determines rail alignment, path diversity, routing behavior, bandwidth consistency, and troubleshooting reliability. Validating section by section during deployment prevents large-scale rework because errors are discovered while the affected rack, switch, or node group is still being installed. Waiting until the full fabric is complete can make fault isolation much harder. Comparing every physical connection to the topology diagram ensures that each HCA, switch port, transceiver, and cable is connected to the intended neighbor. Wrong-port cabling can still produce link-up status, but it may break expected topology, create congestion, or reduce performance during NCCL and RDMA workloads. Deferring "minor" labeling or port errors is risky because AI fabrics depend on deterministic design. Management pings alone are also insufficient because they do not validate high-speed compute fabric cabling.
NCP-AII Exam Question 15
You are tasked with setting up High Availability (HA) for NVIDIA Base Command Manager (BCM) in a new GPU cluster. The cluster consists of a primary head node, a secondary head node, and several compute nodes. The requirements are automatic failover of BCM services, minimal disruption to workloads, and proper cluster health monitoring during and after installation. During your BCM HA installation and configuration process, which two of the following actions are mandatory for ensuring a robust and verified HA cluster configuration? Pick the 2 correct responses below.
Correct Answer: A,C
A floating Virtual IP address is required because users, compute nodes, and management services need a consistent endpoint for the active BCM head node. NVIDIA DGX BasePOD HA documentation states that the external VIP is the IP address that should always be used to access the active head node after HA configuration is complete. The same HA workflow also verifies failover behavior after setup by checking HA status from both directions and confirming which head node is active. Therefore, a controlled failover validation is necessary to prove that the secondary head node can assume service responsibility. Compute nodes do not need to be powered on and running workloads during HA setup; NVIDIA documentation actually shows cluster nodes being powered off before HA configuration. Independent static IP addresses alone do not provide transparent service continuity because clients would need to reconnect manually. Synchronization occurs as part of the HA setup workflow, but the best two answers for automatic failover and verified readiness are the floating VIP and failover validation.