You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,8 @@
1
1
# 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.
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ To build the TensorRT-OSS components, you will first need the following software
43
43
44
44
**TensorRT GA build**
45
45
46
-
- TensorRT v10.16.0.72
46
+
- TensorRT v10.16.1.11
47
47
- Available from direct download links listed below
48
48
49
49
**System Packages**
@@ -98,24 +98,24 @@ To build the TensorRT-OSS components, you will first need the following software
98
98
99
99
Else download and extract the TensorRT GA build from [NVIDIA Developer Zone](https://developer.nvidia.com) with the direct links below:
100
100
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)
105
105
106
106
**Example: Ubuntu 22.04 on x86-64 with cuda-13.2**
107
107
108
108
```bash
109
109
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
Copy file name to clipboardExpand all lines: docker/ubuntu-cross-aarch64.Dockerfile
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ ARG OS_VERSION=24.04
21
21
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${OS_VERSION}
22
22
LABEL maintainer="NVIDIA CORPORATION"
23
23
24
-
ENV TRT_VERSION 10.16.0.72
24
+
ENV TRT_VERSION 10.16.1.11
25
25
ENV DEBIAN_FRONTEND=noninteractive
26
26
27
27
# 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
87
87
88
88
# Unpack libnvinfer.
89
89
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
93
93
94
94
# Link required library
95
95
RUN cd /usr/aarch64-linux-gnu/lib && ln -sf librt.so.1 librt.so
0 commit comments