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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ For press and other inquiries, please contact Hector Marinez at hmarinez@nvidia.
16
16
17
17
## Supported TensorRT Versions
18
18
19
-
Development on the this branch is for the latest version of [TensorRT 10.8](https://developer.nvidia.com/nvidia-tensorrt-download) with full-dimensions and dynamic shape support.
19
+
Development on the this branch is for the latest version of [TensorRT 10.9](https://developer.nvidia.com/nvidia-tensorrt-download) with full-dimensions and dynamic shape support.
20
20
21
21
For previous versions of TensorRT, refer to their respective branches.
22
22
@@ -29,8 +29,8 @@ Current supported ONNX operators are found in the [operator support matrix](docs
Copy file name to clipboardExpand all lines: docs/Changelog.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
# ONNX-TensorRT Changelog
4
4
5
+
# TensorRT 10.9 GA Release - 2025-3-7
6
+
For more details, see the 10.9 GA release notes
7
+
8
+
- Added support for Python AOT plugins
9
+
- Added support for opset 21 GroupNorm
10
+
- Fixed support for opset 18+ ScatterND
11
+
5
12
# TensorRT 10.8 GA Release - 2025-1-30
6
13
For more details, see the 10.8 GA release notes
7
14
@@ -46,7 +53,7 @@ For more details, see the 10.3 GA release notes.
46
53
- Added support for tensor `axes` inputs for `Slice` nodes
47
54
- Updated `ScatterElements` importer to use an updated plugin
48
55
49
-
# TensorRT 10.2 GA Release - 2024-7-10
56
+
# TensorRT 10.2 GA Release - 2024-7-10
50
57
For more details, see the 10.2 GA release notes.
51
58
52
59
- Improved error handling with new macros and classes
@@ -94,7 +101,7 @@ For more details, see the 9.2 GA release notes for the fixes since 9.1 GA.
94
101
For more details, see the 9.1 GA release notes for the fixes since 9.0 GA.
95
102
96
103
- Added new `ErrorCode` enums to improve error logging
97
-
- Added new members to `IParserError` to improve error logging
104
+
- Added new members to `IParserError` to improve error logging
98
105
- Added static checkers when parsing nodes, resulting better reporting of errors
99
106
100
107
# TensorRT 9.0 GA Release - 2023-9-5
@@ -108,7 +115,7 @@ For more details, see the 9.0 GA release notes for the fixes since 9.0 EA.
108
115
For more details, see the 9.0 EA release notes for the fixes since 8.6 GA.
109
116
110
117
- Added support for INT64 data type. The ONNX parser no longer automatically casts INT64 to INT32.
111
-
- Added support for ONNX local functions when parsing ONNX models with the ONNX parser.
118
+
- Added support for ONNX local functions when parsing ONNX models with the ONNX parser.
112
119
- Breaking API Change: In TensorRT 9.0, due to the introduction of INT64 as a supported data type, ONNX models with INT64 I/O require INT64 bindings. Note that prior to this release, such models required INT32 bindings.
113
120
- Updated ONNX submodule to v1.14.0.
114
121
@@ -135,7 +142,7 @@ For more details, see the 8.6 EA release notes for new features added in TensorR
135
142
136
143
## Changed
137
144
138
-
- All cast operations will now use the new `CastLayer` over the pervious `IdentityLayer`.
145
+
- All cast operations will now use the new `CastLayer` over the pervious `IdentityLayer`.
139
146
140
147
# TensorRT 8.5 GA Release - 2022-11-2
141
148
@@ -172,7 +179,7 @@ For more details, see the 8.5 GA release notes for new features added in TensorR
172
179
173
180
## TensorRT 8.4 GA Release - 2022-6-6
174
181
175
-
### Added
182
+
### Added
176
183
177
184
For more details, see the 8.4 GA release notes for new features added in TensorRT 8.4
178
185
@@ -197,7 +204,7 @@ See the 8.2 EA release notes for new features added in TensorRT 8.2.
197
204
### Fixes
198
205
- Removed duplicate constant layer checks that caused some performance regressions
199
206
- Fixed expand dynamic shape calculations
200
-
- Added parser-side checks for Scatter layer support
207
+
- Added parser-side checks for Scatter layer support
Copy file name to clipboardExpand all lines: docs/operators.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# Supported ONNX Operators
4
4
5
-
TensorRT 10.8 supports operators in the inclusive range of opset 9 to opset 22. Latest information of ONNX operators can be found [here](https://github.com/onnx/onnx/blob/main/docs/Operators.md). More details and limitations are documented in the chart below.
5
+
TensorRT 10.9 supports operators in the inclusive range of opset 9 to opset 22. Latest information of ONNX operators can be found [here](https://github.com/onnx/onnx/blob/main/docs/Operators.md). More details and limitations are documented in the chart below.
6
6
7
7
TensorRT supports the following ONNX data types: DOUBLE, FLOAT32, FLOAT16, BFLOAT16, FP8, FP4, INT32, INT64, INT8, INT4, UINT8, and BOOL
0 commit comments