Home › Certifications › NVIDIA NCA Gen AI LLMs › NVIDIA Inference Stack — NIM, NeMo, Triton, TensorRT-LLM
46 multiple-choice questions and 22 flashcards on NVIDIA Inference Stack — NIM, NeMo, Triton, TensorRT-LLM, about 15% of the NVIDIA NCA Gen AI LLMs bank. Every one carries a written rationale.
NVIDIA Inference Stack — NIM, NeMo, Triton, TensorRT-LLM is one of 8 chapters in CoStudy's NVIDIA NCA Gen AI LLMs bank, and it holds 46 of the bank's 310 multiple-choice questions — roughly 15% of the total. That proportion is not arbitrary: chapters follow the certifying body's published exam outline, and the number of questions in each is set by that domain's published weight, so the share of your practice time this chapter takes matches the share of the real exam it accounts for.
Studying by chapter is worth doing once you have a diagnostic score. A single overall percentage tells you whether you are close; it does not tell you which domain is dragging. Working a weak chapter in isolation, and re-testing it in isolation, is the fastest way to move a score that has stalled — and it is why the mock exams in CoStudy report by domain rather than as one number.
10 questions drawn from this chapter, with the full rationale shown — the controlling principle behind the right answer, and why each wrong option tempts and fails.
GPU memory utilization for serving LLMs is dominated by which factor for long-context, high-concurrency workloads?
Answer: B — KV cache, scaling with batch, sequence length, layers, and heads
B) Correct — KV cache grows with batch size, sequence length, layers, heads, head dim, and precision, so it dominates long-context serving. A) Vocabulary tables are tiny. C) Optimizer states exist only during training. D) Graph metadata is negligible.
INT8 quantization reduces:
Answer: B — Memory footprint and latency, at a small accuracy cost
A) Hyperbole; the impact is modest. B) Correct — INT8 cuts memory roughly 4× versus FP32 and speeds up GEMMs, with small accuracy loss under good calibration. C/D) It affects both memory and latency.
Which is the BEST description of paged attention (vLLM)?
Answer: D — Block-paged KV cache modeled on virtual memory
D) Paged attention stores the KV cache in fixed-size blocks with an indirection table, like OS virtual memory, so requests stop overprovisioning contiguous cache and blocks can be shared. A), B) and C) name unrelated components of the stack.
DGX systems are most accurately described as:
Answer: A — Pre-integrated AI servers with NVLink-connected GPUs from NVIDIA
A) Correct — DGX systems ship as complete servers and workstations tuned for large-model training and inference. B) That conflates DGX with the HGX baseboard reference design. C) They are data center class, not gaming hardware. D) Switching is a different product line.
NVLink is best described as:
Answer: A — A high-bandwidth GPU-to-GPU interconnect for model parallelism
A) Correct — NVLink carries fast tensor exchange between GPUs, which tensor and pipeline parallelism depend on. B) It coexists with PCIe rather than replacing it. C) It is not a storage protocol. D) That describes GPU virtualization, a separate feature.
Which is the BEST high-level architectural separation between NIM, TensorRT-LLM, and Triton?
Answer: A — NIM is the packaged microservice, Triton the server, TensorRT-LLM the compiler
A) Correct — NIM productizes a microservice commonly built over Triton and TensorRT-LLM, which are the server and the LLM inference compiler respectively. B) The three sit at different layers. C) Scrambles the roles. D) None of those functions belong to these components.
Which is the BEST description of NeMo Retriever Embedding/Reranking NIMs?
Answer: A — Embedding and reranking models packaged as NIM microservices
A) Correct — NeMo Retriever ships production embedding and reranking models as microservices with optimized GPU inference. B) The vector store remains a separate component. C) They are containers, not appliances. D) They are models, not tokenizers.
Which NVIDIA service targets generative AI for visual content (images, 3D, video)?
Answer: C — Picasso
A) Biology. B) Speech. C) Correct — NVIDIA Picasso is the visual generative AI cloud service. D) Cybersecurity.
Which is the BEST description of TensorRT-LLM?
Answer: B — A library compiling LLMs into optimized TensorRT inference engines
B) Correct — TensorRT-LLM builds optimized engines with kernel fusion, paged attention, in-flight batching, and quantization. A) It targets inference, not training. C) Retrieval integration is a separate concern. D) It is not an RL environment.
Tensor parallelism in Megatron-LM splits:
Answer: C — Individual GEMMs split across GPUs by feature dimension
C) Tensor parallelism shards the matrix multiplications inside a layer along hidden or head dimensions. A) Splitting whole layers is pipeline parallelism. B) Splitting batches is data parallelism. D) Sharding optimizer state is ZeRO.
4 cards from the 22 in this chapter.
What role does NeMo Retriever play in a RAG system?
NeMo Retriever provides the GPU-accelerated information-retrieval building blocks for RAG: document extraction and ingestion, embedding models that turn chunks and queries into vectors, and reranking models that reorder candidates by relevance. It supplies retrieval quality and throughput; it is not the generator and is not itself a vector database.
NIM (NVIDIA Inference Microservices)?
Containerized, optimized inference for foundation models. Pre-built endpoints for Llama, Mistral, etc.
Paged attention (vLLM)?
Memory technique for KV cache: split into pages so memory isn't reserved per request. Dramatically improves throughput.
NVIDIA NeMo Framework?
End-to-end framework for training, fine-tuning, customizing, deploying generative AI models. Includes Megatron-LM, NeMo Curator (data).
These are a sample. The full NVIDIA Inference Stack — NIM, NeMo, Triton, TensorRT-LLM chapter runs 68 items with per-chapter progress tracking, on the web and in the iOS app.
Open NVIDIA NCA Gen AI LLMs in CoStudy →