Which feature of RDMA reduces CPU utilization and lowers latency?
Answer : B
Remote Direct Memory Access (RDMA) reduces CPU utilization and latency through network adapters with hardware offloading. These adapters handle data transfers directly between memory locations, bypassing CPU-intensive operations like memory copies and protocol processing. Larger buffers and software like Magnum I/O may enhance performance, but hardware offloading is the core RDMA feature delivering these benefits.
(Reference: NVIDIA Networking Documentation, Section on RDMA Offloading)
In training and inference architecture requirements, what is the main difference between training and inference?
Answer : B
The primary distinction between training and inference lies in their operational demands. Training necessitates large amounts of data to iteratively optimize model parameters, often involving extensive datasets processed in batches across multiple GPUs to achieve convergence. Inference, however, is designed for real-time or low-latency processing, where trained models are deployed to make predictions on new inputs with minimal delay, typically requiring less data volume but high responsiveness. This fundamental difference shapes their respective architectural designs and resource allocations.
(Reference: NVIDIA AI Infrastructure and Operations Study Guide, Section on Training vs. Inference Requirements)
Which GPUs should be used when training a neural network for self-driving cars?
Answer : A
Training neural networks for self-driving cars requires immense computational power and high-bandwidth memory to process vast datasets (e.g., sensor data, video). NVIDIA H100 GPUs, with their cutting-edge architecture and massive throughput, are ideal for these demanding workloads. L4 GPUs are optimized for inference and efficiency, while DRIVE Orin targets in-vehicle inference, not training, making H100 the best choice.
(Reference: NVIDIA AI Infrastructure and Operations Study Guide, Section on GPU Selection for Training)
Which are three key features of InfiniBand networking technology?
Answer : D
InfiniBand is renowned for three key features: low latency (microsecond-scale communication), high bandwidth (100 Gb/s and beyond), and CPU offloads (via RDMA), which shift data transfer tasks to the network hardware, boosting system efficiency. High latency contradicts InfiniBand's design, and GPU offloads are not a core networking feature, making low latency, high bandwidth, and CPU offloads the definitive trio.
(Reference: NVIDIA Networking Documentation, Section on InfiniBand Features)
What is an advantage of InfiniBand over Ethernet?
Answer : C
InfiniBand's advantage over Ethernet lies in its lower latency, achieved through a streamlined protocol and hardware offloads, delivering microsecond-scale communication critical for AI clusters. While InfiniBand often offers high bandwidth, Ethernet can match or exceed it (e.g., 400 GbE), and Ethernet supports RDMA via RoCE, making latency the standout differentiator.
(Reference: NVIDIA Networking Documentation, Section on InfiniBand vs. Ethernet)
When training a neural network, what is the most common pattern of storage access?
Answer : B
Training neural networks typically involves streaming large datasets from storage in a sequential read pattern. This ordered access maximizes throughput and minimizes seek overhead, as training pipelines ingest data in batches for processing across epochs. Writes (e.g., model checkpoints) are less frequent and typically sequential, while random writes are rare, making sequential reads the dominant pattern. (Note: The document incorrectly lists C as the answer; B aligns with NVIDIA's documentation.)
(Reference: NVIDIA AI Infrastructure and Operations Study Guide, Section on Storage Access Patterns)
Which architecture is the core concept behind large language models?
Answer : C
The Transformer model is the foundational architecture for modern large language models (LLMs). Introduced in the paper 'Attention is All You Need,' it uses stacked layers of self-attention mechanisms and feed-forward networks, often in encoder-decoder or decoder-only configurations, to efficiently capture long-range dependencies in text. While BERT (a specific Transformer-based model) and attention mechanisms (a component of Transformers) are related, the Transformer itself is the core concept. State space models are an alternative approach, not the primary basis for LLMs.
(Reference: NVIDIA AI Infrastructure and Operations Study Guide, Section on Large Language Models)