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
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,25 @@
1
1
# TensorRT OSS Release Changelog
2
2
3
+
## 10.10.0 GA - 2025-4-28
4
+
5
+
Key Features and Updates:
6
+
7
+
- Plugin changes
8
+
- Deprecated the enum classes [PluginVersion](https://docs.nvidia.com/deeplearning/tensorrt/latest/_static/c-api/namespacenvinfer1.html#a6fb3932a2896d82a94c8783e640afb34) & [PluginCreatorVersion](https://docs.nvidia.com/deeplearning/tensorrt/latest/_static/c-api/namespacenvinfer1.html#a43c4159a19c23f74234f3c34124ea0c5). `PluginVersion` & `PluginCreatorVersion` are used only in relation to `IPluginV2`-descendent plugin interfaces, which are all deprecated.
9
+
- Added the following APIs that enable users to obtain a list of all Plugin Creators hierarchically registered to a TensorRT `IPluginRegistry` (`C++`, `Python`) instance.
10
+
- C++ API: `IPluginRegistry::getAllCreatorsRecursive()`
- Added FP16 and FP8 LoRA support for the SDXL and FLUX pipelines.
15
+
- Added FP16 ControlNet support for the SDXL pipeline.
16
+
- Sample changes
17
+
- Added support for the [python_plugin](https://github.com/NVIDIA/TensorRT/tree/release/10.9/samples/python/python_plugin) sample to compile targets to Blackwell.
18
+
- Parser changes
19
+
- Cleaned up log spam when the ONNX network contained a mixture of Plugins and LocalFunctions.
20
+
- UINT8 constants are now properly imported for `QuantizeLinear` & `DequantizeLinear` nodes.
21
+
- Plugin fallback importer now also reads its namespace from a Node's domain field.
@@ -84,24 +86,24 @@ To build the TensorRT-OSS components, you will first need the following software
84
86
85
87
Else download and extract the TensorRT GA build from [NVIDIA Developer Zone](https://developer.nvidia.com) with the direct links below:
86
88
87
-
-[TensorRT 10.9.0.34 for CUDA 11.8, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.9.0/tars/TensorRT-10.9.0.34.Linux.x86_64-gnu.cuda-11.8.tar.gz)
88
-
-[TensorRT 10.9.0.34 for CUDA 12.8, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.9.0/tars/TensorRT-10.9.0.34.Linux.x86_64-gnu.cuda-12.8.tar.gz)
89
-
-[TensorRT 10.9.0.34 for CUDA 11.8, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.9.0/zip/TensorRT-10.9.0.34.Windows.win10.cuda-11.8.zip)
90
-
-[TensorRT 10.9.0.34 for CUDA 12.8, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.9.0/zip/TensorRT-10.9.0.34.Windows.win10.cuda-12.8.zip)
89
+
-[TensorRT 10.10.0.31 for CUDA 11.8, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.10.0/tars/TensorRT-10.10.0.31.Linux.x86_64-gnu.cuda-11.8.tar.gz)
90
+
-[TensorRT 10.10.0.31 for CUDA 12.9, Linux x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.10.0/tars/TensorRT-10.10.0.31.Linux.x86_64-gnu.cuda-12.9.tar.gz)
91
+
-[TensorRT 10.10.0.31 for CUDA 11.8, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.10.0/zip/TensorRT-10.10.0.31.Windows.win10.cuda-11.8.zip)
92
+
-[TensorRT 10.10.0.31 for CUDA 12.9, Windows x86_64](https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/10.10.0/zip/TensorRT-10.10.0.31.Windows.win10.cuda-12.9.zip)
91
93
92
-
**Example: Ubuntu 20.04 on x86-64 with cuda-12.8**
94
+
**Example: Ubuntu 20.04 on x86-64 with cuda-12.9**
93
95
94
96
```bash
95
97
cd~/Downloads
96
-
tar -xvzf TensorRT-10.9.0.34.Linux.x86_64-gnu.cuda-12.8.tar.gz
97
-
export TRT_LIBPATH=`pwd`/TensorRT-10.9.0.34
98
+
tar -xvzf TensorRT-10.10.0.31.Linux.x86_64-gnu.cuda-12.9.tar.gz
0 commit comments