forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade TensorRT to version 7.0.0.11 (microsoft#2973)
* update onnx-tensorrt submodule to trt7 branch * add fp16 option for TRT7 * switch to master branch of onnx tensorrt * update submodule * update to TensorRT7.0.0.11 * update to onnx-tensorrt for TensorRT7.0 * switch to private branch due to issues in master branch * remove trt_onnxify * disable warnings c4804 for TensorRT parser * disable warnings c4702 for TensorRT parser * add back sanity check of shape tensort input in the parser * disable some warnings for TensorRT7 * change fp16 threshold for TensorRT * update onn-tensorrt parser * fix cycle issue in faster-rcnn and add cycle detection in GetCapability * Update TensorRT container to v20.01 * Update TensorRT image name * Update linux-multi-gpu-tensorrt-ci-pipeline.yml * Update linux-gpu-tensorrt-ci-pipeline.yml * disable rnn tests for TensorRT * disable rnn tests for TensorRT * disabled some unit test for TensorRT * update onnx-tensorrt submodule * update build scripts for TensorRT * formating the code * Update TensorRT-ExecutionProvider.md * Update BUILD.md * Update tensorrt_execution_provider.h * Update tensorrt_execution_provider.cc * Update win-gpu-tensorrt-ci-pipeline.yml * use GetEnvironmentVar function to get env virables and switch to Win-GPU-2019 agent pool for win CI build * change tensorrt path * change tensorrt path * fix win ci build issue * update code based on the reviews * fix build issue * roll back to cuda10.0 * add RemoveCycleTest for TensorRT * fix windows ci build issues * fix ci build issues * fix file permission * fix out of range issue for max_workspace_size_env
- Loading branch information
Showing
23 changed files
with
452 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule onnx-tensorrt
updated
32 files
+1 −1 | .gitmodules | |
+43 −138 | CMakeLists.txt | |
+168 −95 | ImporterContext.hpp | |
+563 −459 | ModelImporter.cpp | |
+57 −50 | ModelImporter.hpp | |
+8 −6 | NvOnnxParser.cpp | |
+23 −8 | NvOnnxParser.h | |
+0 −30 | NvOnnxParserTypedefs.h | |
+163 −66 | OnnxAttrs.cpp | |
+37 −21 | OnnxAttrs.hpp | |
+11 −19 | README.md | |
+361 −0 | ShapeTensor.cpp | |
+155 −0 | ShapeTensor.hpp | |
+83 −102 | ShapedWeights.cpp | |
+17 −19 | ShapedWeights.hpp | |
+176 −79 | Status.hpp | |
+74 −40 | TensorOrWeights.hpp | |
+2,505 −919 | builtin_op_importers.cpp | |
+2 −1 | builtin_op_importers.hpp | |
+29 −13 | onnx2trt.hpp | |
+42 −30 | onnx2trt_common.hpp | |
+3 −3 | onnx2trt_runtime.hpp | |
+1,098 −960 | onnx2trt_utils.cpp | |
+165 −135 | onnx2trt_utils.hpp | |
+57 −32 | onnx_backend_test.py | |
+108 −103 | onnx_utils.hpp | |
+162 −140 | operators.md | |
+0 −125 | serialize.hpp | |
+1 −1 | third_party/onnx | |
+73 −56 | toposort.hpp | |
+145 −203 | trt_utils.hpp | |
+1 −1 | utils.hpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.