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 Master branch is for the latest version of [TensorRT 7.2.2](https://developer.nvidia.com/nvidia-tensorrt-download) with full-dimensions and dynamic shape support.
19
+
Development on the Master branch is for the latest version of [TensorRT 7.2.3.4](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
@@ -48,8 +48,8 @@ Current supported ONNX operators are found in the [operator support matrix](docs
Copy file name to clipboardExpand all lines: docs/Changelog.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,21 @@
2
2
3
3
# ONNX-TensorRT Changelog
4
4
5
+
## 21.05 Container Release - 2021-05-19
6
+
### Added
7
+
- Added support for InstanceNormalization on 5D tensors
8
+
- Added library only build target [#659](https://github.com/onnx/onnx-tensorrt/pull/659)
9
+
- Added support for negative gather indices [#681](https://github.com/onnx/onnx-tensorrt/pull/681)
10
+
- Added support for `DOUBLE`-typed inputs and weights through downcast to float [#674](https://github.com/onnx/onnx-tensorrt/pull/674)
11
+
- Added support for optional plugin fields in FallbackPlugin path [#676](https://github.com/onnx/onnx-tensorrt/pull/676)
- Fixed index offset calculation in GatherElements [#675](https://github.com/onnx/onnx-tensorrt/pull/675)
18
+
- Clarified dynamic shape support for ReverseSequence
19
+
5
20
## 21.03 Container Release - 2021-03-09
6
21
### Added
7
22
- Added opset13 support for `SoftMax`, `LogSoftmax`, `Squeeze`, and `Unsqueeze`
@@ -13,7 +28,7 @@
13
28
14
29
## 21.02 Container Release - 2021-01-18
15
30
### Added
16
-
- Added support for the `ReverseSequence` operator [#590] - https://github.com/onnx/onnx-tensorrt/pull/590
31
+
- Added support for the `ReverseSequence` operator [#590](https://github.com/onnx/onnx-tensorrt/pull/590)
17
32
- Updated `parse()` and `supportsModel()` API calls with an optional `model_path` parameter to support models with external weights [#621](https://github.com/onnx/onnx-tensorrt/pull/621)
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
@@ -4,7 +4,7 @@
4
4
5
5
TensorRT 7.2 supports operators up to Opset 13. Latest information of ONNX operators can be found [here](https://github.com/onnx/onnx/blob/master/docs/Operators.md)
6
6
7
-
TensorRT supports the following ONNX data types: FLOAT32, FLOAT16, INT8, and BOOL
7
+
TensorRT supports the following ONNX data types: DOUBLE, FLOAT32, FLOAT16, INT8, and BOOL
8
8
9
9
> Note: There is limited support for INT32, INT64, and DOUBLE types. TensorRT will attempt to cast down INT64 to INT32 and DOUBLE down to FLOAT where possible. If not possible, TensorRT will throw an error. See the [TensorRT layer support matrix](https://docs.nvidia.com/deeplearning/sdk/tensorrt-support-matrix/index.html#layers-precision-matrix) for more information on data type support.
0 commit comments