Skip to content

Commit 5302b28

Browse files
authored
10.16.1 update (#4737)
Signed-off-by: Kevin Chen <kevinch@nvidia.com>
1 parent 52399f5 commit 5302b28

10 files changed

Lines changed: 65 additions & 61 deletions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# TensorRT OSS Release Changelog
2+
## 10.16.1 GA - 2026-4-13
3+
4+
- This is a bugfix release with no major new features. See the [release notes](https://docs.nvidia.com/deeplearning/tensorrt/latest/getting-started/release-notes-10/10.16.1.html) for more details.
5+
26
## 10.16 GA - 2026-3-24
37

48
- General

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To build the TensorRT-OSS components, you will first need the following software
4343

4444
**TensorRT GA build**
4545

46-
- TensorRT v10.16.0.72
46+
- TensorRT v10.16.1.11
4747
- Available from direct download links listed below
4848

4949
**System Packages**
@@ -98,24 +98,24 @@ To build the TensorRT-OSS components, you will first need the following software
9898

9999
Else download and extract the TensorRT GA build from [NVIDIA Developer Zone](https://developer.nvidia.com) with the direct links below:
100100

101-
- [TensorRT 10.16.0.72 for CUDA 13.2, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz)
102-
- [TensorRT 10.16.0.72 for CUDA 12.9, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz)
103-
- [TensorRT 10.16.0.72 for CUDA 13.2, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/zip/TensorRT-10.16.0.72.Windows.win10.cuda-13.2.zip)
104-
- [TensorRT 10.16.0.72 for CUDA 12.9, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/zip/TensorRT-10.16.0.72.Windows.win10.cuda-12.9.zip)
101+
- [TensorRT 10.16.1.11 for CUDA 13.2, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz)
102+
- [TensorRT 10.16.1.11 for CUDA 12.9, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz)
103+
- [TensorRT 10.16.1.11 for CUDA 13.2, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/zip/TensorRT-10.16.1.11.Windows.amd64.cuda-13.2.zip)
104+
- [TensorRT 10.16.1.11 for CUDA 12.9, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/zip/TensorRT-10.16.1.11.Windows.amd64.cuda-12.9.zip)
105105

106106
**Example: Ubuntu 22.04 on x86-64 with cuda-13.2**
107107

108108
```bash
109109
cd ~/Downloads
110-
tar -xvzf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz
111-
export TRT_LIBPATH=`pwd`/TensorRT-10.16.0.72/lib
110+
tar -xvzf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz
111+
export TRT_LIBPATH=`pwd`/TensorRT-10.16.1.11/lib
112112
```
113113

114114
**Example: Windows on x86-64 with cuda-12.9**
115115

116116
```powershell
117-
Expand-Archive -Path TensorRT-10.16.0.72.Windows.win10.cuda-12.9.zip
118-
$env:TRT_LIBPATH="$pwd\TensorRT-10.16.0.72\lib"
117+
Expand-Archive -Path TensorRT-10.16.1.11.Windows.amd64.cuda-12.9.zip
118+
$env:TRT_LIBPATH="$pwd\TensorRT-10.16.1.11\lib"
119119
```
120120

121121
## Setting Up The Build Environment

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.16.0.72
1+
10.16.1.11

docker/rockylinux8.Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARG CUDA_VERSION=13.2.0
2020
FROM nvidia/cuda:${CUDA_VERSION}-devel-rockylinux8
2121
LABEL maintainer="NVIDIA CORPORATION"
2222

23-
ENV TRT_VERSION 10.16.0.72
23+
ENV TRT_VERSION 10.16.1.11
2424
SHELL ["/bin/bash", "-c"]
2525

2626
# Setup user account
@@ -55,15 +55,15 @@ RUN dnf install -y python38 python38-devel &&\
5555

5656
# Install TensorRT
5757
RUN if [ "${CUDA_VERSION:0:2}" = "13" ]; then \
58-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
59-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
60-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib64 \
61-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp38-none-linux_x86_64.whl ;\
58+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
59+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
60+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib64 \
61+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp38-none-linux_x86_64.whl ;\
6262
elif [ "${CUDA_VERSION:0:2}" = "12" ]; then \
63-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
64-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
65-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib64 \
66-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp38-none-linux_x86_64.whl ;\
63+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
64+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
65+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib64 \
66+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp38-none-linux_x86_64.whl ;\
6767
else \
6868
echo "Invalid CUDA_VERSION"; \
6969
exit 1; \

docker/rockylinux9.Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARG CUDA_VERSION=13.2.0
2020
FROM nvidia/cuda:${CUDA_VERSION}-devel-rockylinux9
2121
LABEL maintainer="NVIDIA CORPORATION"
2222

23-
ENV TRT_VERSION 10.16.0.72
23+
ENV TRT_VERSION 10.16.1.11
2424
SHELL ["/bin/bash", "-c"]
2525

2626
# Setup user account
@@ -60,15 +60,15 @@ RUN dnf -y install \
6060

6161
# Install TensorRT
6262
RUN if [ "${CUDA_VERSION:0:2}" = "13" ]; then \
63-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
64-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
65-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib64 \
66-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp39-none-linux_x86_64.whl ;\
63+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
64+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
65+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib64 \
66+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp39-none-linux_x86_64.whl ;\
6767
elif [ "${CUDA_VERSION:0:2}" = "12" ]; then \
68-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
69-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
70-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib64 \
71-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp39-none-linux_x86_64.whl ;\
68+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
69+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
70+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib64 \
71+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp39-none-linux_x86_64.whl ;\
7272
else \
7373
echo "Invalid CUDA_VERSION"; \
7474
exit 1; \

docker/ubuntu-22.04.Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARG CUDA_VERSION=13.2.0
2020
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu22.04
2121
LABEL maintainer="NVIDIA CORPORATION"
2222

23-
ENV TRT_VERSION 10.16.0.72
23+
ENV TRT_VERSION 10.16.1.11
2424
SHELL ["/bin/bash", "-c"]
2525

2626
# Setup user account
@@ -73,15 +73,15 @@ RUN apt-get install -y --no-install-recommends \
7373

7474
# Install TensorRT
7575
RUN if [ "${CUDA_VERSION:0:2}" = "13" ]; then \
76-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
77-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
78-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib64 \
79-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp310-none-linux_x86_64.whl ;\
76+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
77+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
78+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/x86_64-linux-gnu \
79+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp310-none-linux_x86_64.whl ;\
8080
elif [ "${CUDA_VERSION:0:2}" = "12" ]; then \
81-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
82-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
83-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib64 \
84-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp310-none-linux_x86_64.whl ;\
81+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
82+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
83+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/x86_64-linux-gnu \
84+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp310-none-linux_x86_64.whl ;\
8585
else \
8686
echo "Invalid CUDA_VERSION"; \
8787
exit 1; \

docker/ubuntu-24.04-aarch64.Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARG CUDA_VERSION=13.2.0
2020
# Multi-arch container support available in non-cudnn containers.
2121
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu24.04
2222

23-
ENV TRT_VERSION 10.16.0.72
23+
ENV TRT_VERSION 10.16.1.11
2424
SHELL ["/bin/bash", "-c"]
2525

2626
# Setup user account and edit default account
@@ -83,15 +83,15 @@ ENV PATH="/opt/venv/bin:$PATH"
8383

8484
# Install TensorRT
8585
RUN if [ "${CUDA_VERSION:0:2}" = "13" ]; then \
86-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.aarch64-gnu.cuda-13.2.tar.gz \
87-
&& tar -xf TensorRT-10.16.0.72.Linux.aarch64-gnu.cuda-13.2.tar.gz \
88-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib/aarch64-linux-gnu/ \
89-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp312-none-linux_aarch64.whl ;\
86+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.aarch64-gnu.cuda-13.2.tar.gz \
87+
&& tar -xf TensorRT-10.16.1.11.Linux.aarch64-gnu.cuda-13.2.tar.gz \
88+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/aarch64-linux-gnu/ \
89+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp312-none-linux_aarch64.whl ;\
9090
elif [ "${CUDA_VERSION:0:2}" = "12" ]; then \
91-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.aarch64-gnu.cuda-12.9.tar.gz \
92-
&& tar -xf TensorRT-10.16.0.72.Linux.aarch64-gnu.cuda-12.9.tar.gz \
93-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib/aarch64-linux-gnu/ \
94-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp312-none-linux_aarch64.whl ;\
91+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.aarch64-gnu.cuda-12.9.tar.gz \
92+
&& tar -xf TensorRT-10.16.1.11.Linux.aarch64-gnu.cuda-12.9.tar.gz \
93+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/aarch64-linux-gnu/ \
94+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp312-none-linux_aarch64.whl ;\
9595
else \
9696
echo "Invalid CUDA_VERSION"; \
9797
exit 1; \

docker/ubuntu-24.04.Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARG CUDA_VERSION=13.2.0
2121
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu24.04
2222
LABEL maintainer="NVIDIA CORPORATION"
2323

24-
ENV TRT_VERSION=10.16.0.72
24+
ENV TRT_VERSION=10.16.1.11
2525
SHELL ["/bin/bash", "-c"]
2626

2727
# Setup user account and edit default account
@@ -82,15 +82,15 @@ ENV PATH="/opt/venv/bin:$PATH"
8282

8383
# Install TensorRT
8484
RUN if [ "${CUDA_VERSION:0:2}" = "13" ]; then \
85-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
86-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-13.2.tar.gz \
87-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib/x86_64-linux-gnu/ \
88-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp312-none-linux_x86_64.whl ;\
85+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
86+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-13.2.tar.gz \
87+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/x86_64-linux-gnu/ \
88+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp312-none-linux_x86_64.whl ;\
8989
elif [ "${CUDA_VERSION:0:2}" = "12" ]; then \
90-
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
91-
&& tar -xf TensorRT-10.16.0.72.Linux.x86_64-gnu.cuda-12.9.tar.gz \
92-
&& cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib/x86_64-linux-gnu/ \
93-
&& pip install TensorRT-10.16.0.72/python/tensorrt-10.16.0.72-cp312-none-linux_x86_64.whl ;\
90+
wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
91+
&& tar -xf TensorRT-10.16.1.11.Linux.x86_64-gnu.cuda-12.9.tar.gz \
92+
&& cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/x86_64-linux-gnu/ \
93+
&& pip install TensorRT-10.16.1.11/python/tensorrt-10.16.1.11-cp312-none-linux_x86_64.whl ;\
9494
else \
9595
echo "Invalid CUDA_VERSION"; \
9696
exit 1; \

docker/ubuntu-cross-aarch64.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARG OS_VERSION=24.04
2121
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${OS_VERSION}
2222
LABEL maintainer="NVIDIA CORPORATION"
2323

24-
ENV TRT_VERSION 10.16.0.72
24+
ENV TRT_VERSION 10.16.1.11
2525
ENV DEBIAN_FRONTEND=noninteractive
2626

2727
# Setup user account and edit default account
@@ -87,9 +87,9 @@ RUN wget https://developer.download.nvidia.com/compute/cuda/13.2.0/local_install
8787

8888
# Unpack libnvinfer.
8989

90-
RUN wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.0/tars/TensorRT-10.16.0.72.Linux.aarch64-gnu.cuda-13.1.tar.gz && \
91-
tar -xf TensorRT-10.16.0.72.Linux.aarch64-gnu.cuda-13.1.tar.gz && \
92-
cp -a TensorRT-10.16.0.72/lib/*.so* /usr/lib/aarch64-linux-gnu
90+
RUN wget https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.16.1/tars/TensorRT-10.16.1.11.Linux.aarch64-gnu.cuda-13.2.tar.gz && \
91+
tar -xf TensorRT-10.16.1.11.Linux.aarch64-gnu.cuda-13.2.tar.gz && \
92+
cp -a TensorRT-10.16.1.11/lib/*.so* /usr/lib/aarch64-linux-gnu
9393

9494
# Link required library
9595
RUN cd /usr/aarch64-linux-gnu/lib && ln -sf librt.so.1 librt.so

include/NvInferVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
#define TRT_MAJOR_ENTERPRISE 10
2727
#define TRT_MINOR_ENTERPRISE 16
28-
#define TRT_PATCH_ENTERPRISE 0
29-
#define TRT_BUILD_ENTERPRISE 72
28+
#define TRT_PATCH_ENTERPRISE 1
29+
#define TRT_BUILD_ENTERPRISE 11
3030
#define NV_TENSORRT_MAJOR TRT_MAJOR_ENTERPRISE //!< TensorRT major version.
3131
#define NV_TENSORRT_MINOR TRT_MINOR_ENTERPRISE //!< TensorRT minor version.
3232
#define NV_TENSORRT_PATCH TRT_PATCH_ENTERPRISE //!< TensorRT patch version.

0 commit comments

Comments
 (0)