Skip to content

Commit 492878b

Browse files
committed
TensorRT OSS release v7.2.1
Signed-off-by: Rajeev Rao <[email protected]>
1 parent 30bb967 commit 492878b

File tree

585 files changed

+291350
-2435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

585 files changed

+291350
-2435
lines changed

.clang-format

+7-18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
Language: Cpp
3-
# BasedOnStyle: WebKit
42
AccessModifierOffset: -4
53
AlignAfterOpenBracket: DontAlign
64
AlignConsecutiveAssignments: false
@@ -18,22 +16,11 @@ AlwaysBreakAfterDefinitionReturnType: None
1816
AlwaysBreakAfterReturnType: None
1917
AlwaysBreakBeforeMultilineStrings: true
2018
AlwaysBreakTemplateDeclarations: true
19+
BasedOnStyle: None
2120
BinPackArguments: true
2221
BinPackParameters: true
23-
BraceWrapping:
24-
AfterClass: true
25-
AfterControlStatement: true
26-
AfterEnum: true
27-
AfterFunction: true
28-
AfterNamespace: true
29-
AfterObjCDeclaration: true
30-
AfterStruct: true
31-
AfterUnion: true
32-
BeforeCatch: true
33-
BeforeElse: true
34-
IndentBraces: false
3522
BreakBeforeBinaryOperators: All
36-
BreakBeforeBraces: Custom
23+
BreakBeforeBraces: Allman
3724
BreakBeforeTernaryOperators: true
3825
BreakConstructorInitializersBeforeComma: true
3926
ColumnLimit: 120
@@ -46,7 +33,8 @@ DerivePointerAlignment: false
4633
DisableFormat: false
4734
ExperimentalAutoDetectBinPacking: false
4835
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
49-
IncludeCategories:
36+
IncludeBlocks: Preserve
37+
IncludeCategories:
5038
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
5139
Priority: 2
5240
- Regex: '^(<|"(gtest|isl|json)/)'
@@ -57,6 +45,7 @@ IndentCaseLabels: false
5745
IndentWidth: 4
5846
IndentWrappedFunctionNames: false
5947
KeepEmptyLinesAtTheStartOfBlocks: true
48+
Language: Cpp
6049
MacroBlockBegin: ''
6150
MacroBlockEnd: ''
6251
MaxEmptyLinesToKeep: 1
@@ -71,6 +60,7 @@ PenaltyBreakString: 1000
7160
PenaltyExcessCharacter: 1000000
7261
PenaltyReturnTypeOnItsOwnLine: 60
7362
PointerAlignment: Left
63+
PointerBindsToType: false
7464
ReflowComments: true
7565
SortIncludes: true
7666
SpaceAfterCStyleCast: true
@@ -79,12 +69,11 @@ SpaceBeforeParens: ControlStatements
7969
SpaceInEmptyParentheses: false
8070
SpacesBeforeTrailingComments: 1
8171
SpacesInAngles: false
82-
SpacesInContainerLiterals: true
8372
SpacesInCStyleCastParentheses: false
73+
SpacesInContainerLiterals: true
8474
SpacesInParentheses: false
8575
SpacesInSquareBrackets: false
8676
Standard: Cpp11
8777
TabWidth: 4
8878
UseTab: Never
8979
...
90-

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ assignees: ''
2323
**Python Version (if applicable)**:
2424
**TensorFlow Version (if applicable)**:
2525
**PyTorch Version (if applicable)**:
26-
**Baremetal or Container (which commit + image + tag)**:
26+
**Baremetal or Container (if container which image + tag)**:
2727

2828

2929
## Relevant Files

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
[submodule "parsers/onnx"]
1010
path = parsers/onnx
1111
url = https://github.com/onnx/onnx-tensorrt.git
12-
branch = 7.1
12+
branch = 7.2.1

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# TensorRT OSS Release Changelog
2+
3+
## [7.2.1](https://docs.nvidia.com/deeplearning/tensorrt/release-notes/tensorrt-7.html#rel_7-2-1) - 2020-10-20
4+
### Added
5+
- [Polygraphy](tools/Polygraphy) v0.20.13 - Deep Learning Inference Prototyping and Debugging Toolkit
6+
- [PyTorch-Quantization Toolkit](tools/pytorch-quantization) v2.0.0
7+
- Updated BERT plugins for [variable sequence length inputs](demo/BERT#variable-sequence-length)
8+
- Optimized kernels for sequence lengths of 64 and 96 added
9+
- Added Tacotron2 + Waveglow TTS demo [#677](https://github.com/NVIDIA/TensorRT/pull/677)
10+
- Re-enable `GridAnchorRect_TRT` plugin with rectangular feature maps [#679](https://github.com/NVIDIA/TensorRT/pull/679)
11+
- Update batchedNMS plugin to IPluginV2DynamicExt interface [#738](https://github.com/NVIDIA/TensorRT/pull/738)
12+
- Support 3D inputs in InstanceNormalization plugin [#745](https://github.com/NVIDIA/TensorRT/pull/745)
13+
- Added this CHANGELOG.md
14+
15+
### Changed
16+
- ONNX GraphSurgeon - [v0.2.7](tools/onnx-graphsurgeon/CHANGELOG.md#v027-2020-09-29) with bugfixes, new examples.
17+
- demo/BERT bugfixes for Jetson Xavier
18+
- Updated build Dockerfile to cuda-11.1
19+
- Updated ClangFormat style specification according to TensorRT coding guidelines
20+
21+
### Removed
22+
- N/A

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ endif()
8080
############################################################################################
8181
# Dependencies
8282

83-
set(DEFAULT_CUDA_VERSION 11.0)
83+
set(DEFAULT_CUDA_VERSION 11.1)
8484
set(DEFAULT_CUDNN_VERSION 8.0)
8585
set(DEFAULT_PROTOBUF_VERSION 3.0.0)
8686
set(DEFAULT_CUB_VERSION 1.8.0)

0 commit comments

Comments
 (0)