NVIDIA TensorRT is a high-performance deep learning inference library. The cu13 variant targets CUDA 13.x. Current version 10.16.1.11, release cadence approximately monthly.
pip install tensorrt-cu13Verified import paths — ran on the pinned version, not inferred.
Minimal TensorRT setup showing logger, builder, and network creation.
Ensure your environment has CUDA 13.2+ (for TRT 10.16) or matching CUDA version for the TensorRT release.
Replace pycuda imports with cuda-python equivalents, e.g., 'import pycuda.driver as cuda' -> 'import cuda'.
Migrate to IPluginV3-based version 2 plugins.
Install the correct TensorRT variant matching your CUDA version (e.g., tensorrt-cu12, tensorrt-cu11).