For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Introduction
    • Overview
    • Relevant Technologies
    • Getting Started
  • Setup
    • SDK Installation
    • Additional Setup
    • Third Party Hardware Setup
  • Using the SDK
    • Holoscan Core
    • GPU Resident Execution
    • Holoscan by Example
    • Create an Application
    • Create a Distributed Application
    • Create an Operator
    • Create an Operator via Decorator
    • Create a Condition
    • Dynamic Flow Control
    • CUDA Stream Handling
    • Logging
    • Data Logging
    • Debugging
    • Python Operator Bindings
  • Operators
    • Operators and Extensions
    • Visualization
    • Inference
    • Testing
    • Video I/O Vendor Implementation Guide
  • Components
    • Schedulers
    • Conditions
    • Resources
    • Analytics
  • AI Skills
    • Ai Skills
  • API reference
  • Performance
    • Performance Considerations
    • Flow Tracking
    • GXF Job Statistics
    • Nsight Profiling
  • HoloHub
    • HoloHub Overview
  • FAQ
    • FAQ
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogoDocumentation
On this page
  • Rivermax and GPUDirect RDMA
  • Graph Execution Framework
  • GXF core concepts
  • TensorRT Optimized Inference
  • Interoperability between CUDA and rendering frameworks
  • Accelerated image transformations
  • Unified Communications X
  • MatX Accelerated Computing
Introduction

Relevant Technologies

||View as Markdown|
Previous

Overview

Next

Getting Started

Holoscan accelerates streaming AI applications by leveraging both hardware and software. The Holoscan SDK relies on multiple core technologies to achieve low latency and high throughput:

  • gpudirect_rdma
  • gxf-tech
  • tensorrt
  • cuda_rendering_interop
  • npp
  • ucx
  • matx

Rivermax and GPUDirect RDMA

The NVIDIA Developer Kits equipped with a ConnectX network adapter can be used along with the NVIDIA Rivermax SDK to provide an extremely efficient network connection that is further optimized for GPU workloads by using GPUDirect for RDMA. This technology avoids unnecessary memory copies and CPU overhead by copying data directly to or from pinned GPU memory, and supports both the integrated GPU or the discrete GPU.

NVIDIA is committed to supporting hardware vendors enabling RDMA within their own drivers.

For more information about GPUDirect RDMA, see the following:

  • GPUDirect RDMA Documentation
  • Minimal GPUDirect RDMA Demonstration source code, which provides a real hardware example of using RDMA and includes both kernel drivers and user space applications for the RHS Research PicoEVB and HiTech Global HTG-K800 FPGA boards.

Graph Execution Framework

GXF (Graph Execution Framework) is an NVIDIA-internal graph execution framework that forms the foundation of the Holoscan SDK. GXF provides a low-level entity-component system for building and executing computation graphs, including schedulers, memory allocators, message passing, and a YAML-based graph definition format.

The Holoscan SDK provides a developer-friendly C++ and Python APIs that abstract away GXF internals, culminating in a fully native operator and application model. Today, most Holoscan SDK users do not need to interact with GXF directly.

GXF core concepts

For historical context and to help interpret older code or documentation, here is a mapping of GXF concepts to their Holoscan SDK equivalents:

GXF ConceptHoloscan SDK EquivalentDescription
Entity(implicit)A node in the computation graph; a container for components. In the Holoscan SDK, an Operator implicitly represents an entity.
CodeletOperatorA component that executes custom code via lifecycle methods (start, tick/compute, stop).
ComponentResourceSupporting functionality such as memory allocators, clocks, or serializers attached to an entity.
Scheduling TermConditionA predicate that determines when an operator is ready for execution.
Receiver / TransmitterInput / Output PortMessage-passing endpoints between operators.
ConnectionFlow (Edge)A directed edge in the application graph connecting an output port to an input port.
SchedulerSchedulerOrchestrates the execution of operators based on their conditions.
GXF ExtensionOperator / Resource libraryA shared library that registers components with the runtime. Native Holoscan operators do not require GXF extension registration.

TensorRT Optimized Inference

NVIDIA TensorRT is a deep learning inference framework based on CUDA that provided the highest optimizations to run on NVIDIA GPUs, including the NVIDIA Developer Kits.

The inference module leverages TensorRT among other backends, and provides the ability to execute multiple inferences in parallel.

Interoperability between CUDA and rendering frameworks

Vulkan is commonly used for real-time visualization and, like CUDA, is executed on the GPU. This provides an opportunity for efficient sharing of resources between CUDA and this rendering framework.

The Holoviz module uses the external resource interoperability functions of the low-level CUDA driver application programming interface, the Vulkan external memory and external semaphore extensions.

Accelerated image transformations

Streaming image processing often requires common 2D operations like resizing, converting bit widths, and changing color formats. NVIDIA has built the CUDA accelerated NVIDIA Performance Primitive Library (NPP) that can help with many of these common transformations. NPP is extensively showcased in the Format Converter operator of the Holoscan SDK.

Unified Communications X

The Unified Communications X (UCX) framework is an open-source communication framework developed as a collaboration between industry and academia. It provides high-performance point-to-point communication for data-centric applications. Holoscan SDK uses UCX to send data between fragments in distributed applications. UCX’s high level protocols attempt to automatically select an optimal transport layer depending on the hardware available. For example technologies such as TCP, CUDA memory copy, CUDA IPC and GPUDirect RDMA are supported.

MatX Accelerated Computing

The Holoscan SDK integrates the MatX library, a high-performance C++17 library for numerical computing on NVIDIA GPUs.

The library is accessible in C++ applications through the matx::matx interface library. It enables zero-copy data exchange between MatX tensors (matx::tensor) and holoscan::Tensor via the DLPack standard.

To use MatX in a C++ application, link against the matx::matx target in CMakeLists.txt:

1target_link_libraries(my_application
2 PRIVATE
3 holoscan::core
4 matx::matx
5)

A new C++ example, matx_basic, is available in the examples/matx/matx_basic directory to demonstrate creating, sharing, and performing GPU-accelerated operations on MatX tensors within a Holoscan pipeline.