Index › C › Context window
Click on title for full page
The maximum number of tokens (prompt plus generated output) an LLM can attend to in one session—fixed by architecture and VRAM, and a primary limit for RAG, agents, and long documents.
Index › C › CUDA (Compute Unified Device Architecture)
Click on title for full page
NVIDIA's parallel computing platform and programming model: C/C++ extensions, libraries, and drivers that let applications launch kernels on GPUs and manage device memory, streams, and multi-GPU execution.
Index › C › cuDNN (CUDA Deep Neural Network library)
Click on title for full page
NVIDIA's GPU-accelerated library of primitives for deep learning—convolutions, attention, normalization, and RNN ops—used by PyTorch, TensorRT, and inference runtimes on top of CUDA.
Index › D › Decode
Click on title for full page
The autoregressive inference phase that generates output tokens one at a time—reusing the KV cache and typically memory-bandwidth-bound—after prefill has processed the prompt.
Index › D › DOCA (Data Center Infrastructure on a Chip Architecture)
Click on title for full page
NVIDIA's SDK and runtime for programming BlueField DPUs: libraries and services for networking, storage, security, and telemetry so infrastructure functions run on the NIC instead of the host CPU.
Index › D › DPU (Data Processing Unit)
Click on title for full page
Network-attached accelerators—often SmartNICs such as NVIDIA BlueField—that run infrastructure services (virtual switching, storage, security, telemetry) on dedicated silicon so host CPUs stay available for applications and AI workloads.
Index › F › Fine-tuning / LoRA
Click on title for full page
Adapting a pretrained LLM to a domain or task by updating weights—fully or via Low-Rank Adaptation (LoRA) adapters—on GPU clusters, with workflows on RHEL AI and OpenShift AI.
Index › G › GPU (Graphics Processing Unit)
Click on title for full page
Parallel accelerators built for throughput-oriented workloads—deep learning training and inference, scientific computing, and real-time graphics—by executing thousands of similar operations concurrently rather than optimizing for single-thread latency.
Index › G › Guardrails
Click on title for full page
Policy and safety layers around LLM inference—input/output filtering, jailbreak detection, PII handling, and tool-use constraints—implemented in platforms such as OpenShift AI Guardrails Orchestrator.
Index › I › Inference
Click on title for full page
The deployment phase where a trained model serves predictions—generating tokens, class labels, or embeddings under latency and throughput SLOs—distinct from training in compute profile, software stack, and platform sizing.
Index › I › InfiniBand
Click on title for full page
Lossless RDMA-native cluster fabric for low-latency GPU collective traffic—standard in large-scale AI training and in llm-d disaggregated inference when moving KV state between nodes.
Index › K › KV cache (Key-Value Cache)
Click on title for full page
GPU-resident attention state reused across decode steps so each new token does not recompute keys and values for prior tokens—central to LLM latency, memory footprint, and routing strategies in vLLM and llm-d.
Index › L › LLM (Large Language Model)
Click on title for full page
Neural networks trained on vast text corpora to predict and generate language—served at scale via GPU inference stacks, RAG, and fine-tuning on platforms such as OpenShift AI and RHEL AI.
Index › L › llm-d
Click on title for full page
A Kubernetes-native distributed LLM inference stack that orchestrates vLLM (and similar servers) with KV-cache-aware routing, prefill/decode disaggregation, and production guides—co-developed by Red Hat, IBM, Google, and the open-source community.
Index › M › MCP (Model Context Protocol)
Click on title for full page
An open protocol for connecting LLM applications to tools, data sources, and services through standardized clients and servers—enabling agent workflows beyond plain chat completion APIs.
Index › M › MIG (Multi-Instance GPU)
Click on title for full page
NVIDIA A100/H100 feature that partitions one physical GPU into isolated instances with dedicated compute and memory—improving utilization for multi-tenant inference on Kubernetes without separate cards per workload.
Index › N › NCCL (NVIDIA Collective Communications Library)
Click on title for full page
Optimized multi-GPU and multi-node collective primitives (all-reduce, broadcast, all-gather)—the communication layer beneath distributed PyTorch training and many multi-GPU LLM inference stacks.
Index › N › NIM (NVIDIA Inference Microservices)
Click on title for full page
Containerized, API-first NVIDIA microservices that package optimized inference engines, models, and runtimes for LLMs and other AI workloads—deployed on Kubernetes with enterprise support paths via Red Hat OpenShift AI and RHEL.
Index › N › NVLink
Click on title for full page
NVIDIA's high-bandwidth GPU–GPU and GPU–CPU interconnect within a server or NVLink switch tray—essential for tensor-parallel LLM inference and multi-GPU training without traversing PCIe or the network.
Index › P › Prefill
Click on title for full page
The inference phase that processes the full input prompt in parallel—building the KV cache and dominating time-to-first-token—before autoregressive decode generates output tokens one by one.
Index › Q › Quantization
Click on title for full page
Reducing numeric precision of model weights and activations (FP16, BF16, FP8, INT8, INT4) to cut VRAM and increase inference throughput—implemented in vLLM, TensorRT-LLM, and NIM with trade-offs in accuracy.
Index › R › RAG (Retrieval-Augmented Generation)
Click on title for full page
A pattern that grounds LLM answers in retrieved documents—embedding search, reranking, and prompt assembly—so responses stay current and cite private knowledge without retraining the base model.
Index › R › RDMA (Remote Direct Memory Access)
Click on title for full page
Network technology that lets one host read or write another's memory with minimal CPU involvement—used for distributed training, KV transfer in disaggregated inference, storage (NVMe-oF), and DPU offload.
Index › R › RoCE (RDMA over Converged Ethernet)
Click on title for full page
RDMA on lossless Ethernet—an alternative to InfiniBand for GPU collective traffic and storage, widely deployed when AI clusters share a converged datacenter fabric.
Index › R › ROCm (Radeon Open Compute)
Click on title for full page
AMD's open GPU compute platform—drivers, compilers, and libraries for running PyTorch and inference workloads on Instinct accelerators as an alternative to NVIDIA CUDA on RHEL and OpenShift.
Index › T › TensorRT
Click on title for full page
NVIDIA's SDK for optimizing and deploying trained models on GPUs—graph fusion, precision calibration, and kernel autotuning—often powering NIM and high-performance LLM inference backends.
Index › T › Training
Click on title for full page
The ML phase where model weights are learned from data via forward pass, loss, and backward pass (gradient descent)—dominated by distributed GPU compute, high-bandwidth interconnects, and long-running batch jobs rather than request-level latency.
