Commit Graph

27 Commits

Author SHA1 Message Date
Kevin Chen b8db91e15b TensorRT 10.13 OSS Release (#4531)
Signed-off-by: Kevin Chen <kevinch@nvidia.com>
2025-07-24 14:58:47 -07:00
akhilg-nv 6d178ce8c7 TensorRT 10.12 OSS Release (#4491)
Signed-off-by: Akhil Goel <akhilg@nvidia.com>
2025-06-18 14:35:18 -07:00
Leo Dong 8c6d69ddec TensorRT 10.9 OSS Release. (#4381)
Signed-off-by: Leo Dong <leod@nvidia.com>
2025-03-11 14:54:52 -07:00
Yuan Yao a180e08111 10.8 release changes
Signed-off-by: Yuan Yao <yuanyao@nvidia.com>
2025-01-31 10:17:00 -08:00
Michal Guzek c8a50438f6 Update for 10.5-GA (#4185)
* Updated submodule onnx to 10.5

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

* Updated files to 10.5

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

* Restore the previous .gitmodules

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

* .gitmodules new line

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

* Update public docker files

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

* Update 10.5 oss deleted files

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

* Update deprecated APIs

Signed-off-by: Michal Guzek <mguzek@nvidia.com>

---------

Signed-off-by: Michal Guzek <mguzek@nvidia.com>
2024-10-10 12:43:27 -07:00
Asfiya Baig d3107c885a TensorRT 10.0 GA Release
Signed-off-by: Asfiya Baig <asfiyab@nvidia.com>
2024-04-30 10:00:50 -07:00
Asfiya Baig 147005ffe1 TensorRT 10.0 Release
Signed-off-by: Asfiya Baig <asfiyab@nvidia.com>
2024-04-02 17:06:37 -07:00
Ilya Sherstyuk a291ca6e52 Code quality improvement for various plugins
Clean up CustomFCPlugin
Clean up CropAndResizePlugin
Clean up BatchTilePlugin
Improve code quality of proposalPlugin
Clean up DetectionLayerPlugin
Run clang-format on all .cpp and .h plugin code
upper case literal suffixes in plugin module

Signed-off-by: Shuyue Lan <shuyuel@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2023-03-16 20:53:29 -07:00
Micah Villmow c27025ffd2 cppcheck fixes part 4
Signed-off-by: Shuyue Lan <shuyuel@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2023-03-16 20:53:28 -07:00
Jin Li (Engrg-Hardware 1) e8d5e1671f Various minor fixes for plugins
Limit output_dims == W[1] for plugin test
update embLayernorm plugin doc
Remove else after return as they are not required.
Fix FlattenConcat plugin readme

Signed-off-by: Shuyue Lan <shuyuel@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2023-03-15 17:38:49 -07:00
Shuyue Lan 025060405f create a shared library that contains ROIAlign plugin
For version forward compatibility, we want to generate a shared library which contains vfc plugins. Currently we only have ROIAlign plugin in the list.

Signed-off-by: Shuyue Lan <shuyuel@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2023-03-15 17:38:49 -07:00
asfiyab-nvidia b0c259a749 TensorRT OSS - 8.5.3.1 Release (#2630)
Signed-off-by: Asfiya Baig <asfiyab@nvidia.com>
2023-02-03 12:26:51 -08:00
Simeng Liu 1d6bf36034 TensorRT 8.5.1 OSS Release
Update tools including onnx-graphsurgeon(v0.3.25), Polygraphy(v0.43.1), tensorflow-quantization(v0.2.0)
Update onnx-tensorrt(8.5GA)
Mass merge sample, plugin, demo, python changes for TRT-8.5 GA release
Update demoBERT benchmark data for TensorRT 8.5.1

Signed-off-by: Simeng Liu <simengl@nvidia.com>

Signed-off-by: Simeng Liu <simengl@nvidia.com>
2022-11-02 16:43:34 -07:00
Rajeev Rao 60d62e66d2 Replace behavior of PLUGIN_ASSERT for attribute tests
This graceful failure is needed to enable tests under `trt_mod_test`.

`PLUGIN_ASSERT` is used in many places inside plugin methods, most of
which are `noexcept` and do not contain try-catch blocks. So changing
`PLUGIN_ASSERT` would require a major refactor which is beyond
rel-8.4.  Instead, this MR introduces `PLUGIN_VALIDATE` as a temporary
replacement for `PLUGIN_ASSERT` in places where it is required to enable
valid/invalid attribute tests (mostly `createPlugin` and plugin constructors).
i.e. `PLUGIN_VALIDATE` implements the expected behavior of `PLUGIN_ASSERT`
(throws) while `PLUGIN_ASSERT` still aborts.

Signed-off-by: samurdhi karunaratne <skarunaratne@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2022-06-14 14:23:17 -07:00
Rajeev Rao 3cd1018435 Hide some unnecessarily exported symbols in libnvinfer_plugin
Moves `BasePlugin` and `BaseCreator` in `plugin/common/plugin.h` out of
`nvinfer1::plugin` into `nvinfer1::pluginInternal`, as currently,
everything inside `nvinfer1::plugin` is being exported and those two
are meant to be internal helper classes.

Signed-off-by: samurdhi karunaratne <skarunaratne@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2022-06-14 14:23:17 -07:00
Rajeev Rao 09dce45f91 TensorRT plugins updates for rel-8.4
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2022-06-14 14:23:17 -07:00
Rajeev Rao 052281f0ab Update copyright headers with SPDX identifiers
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2022-04-13 18:16:54 -07:00
skarunaratne f31dbefd3f Minor fixes for proposalPlugin README
The README.md mentioned that "The proposalPlugin generates the following
two outputs:" even though it only generates one output named `rois`. Also
fixed two mismatches in parameter names in README and the code.

Signed-off-by: skarunaratne <skarunaratne@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2022-02-04 08:23:59 -08:00
Rajeev Rao aff45dd565 TensorRT OSS 8.0 release
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2021-07-02 16:35:44 -07:00
Rajeev Rao cc5dede848 clang-format plugins and samples
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2021-04-12 14:56:06 -07:00
zhimengf@nvidia.com 068350b021 create ProposalDynamic and CropAndResizeDynamic plugins.
- create ProposalDynamic and CropAndResizeDynamic plugins
- Fix bug in mFC.nbFields

Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2021-03-18 02:45:54 -07:00
Rajeev Rao 183f891191 Update onnx-tensorrt and copyright headers (2021)
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2021-01-14 01:16:45 -08:00
Rajeev Rao 805810b112 TensorRT 7.1 Open Source Release
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
2020-07-01 16:31:50 -07:00
Kevin Chen 98ab844a6c Adding support for building BERT plugins with GPU_ARCHS specified (#255) 2019-12-05 15:48:18 -08:00
Kevin Chen 639d11abcc TensorRT Open Source Release/6.0 2019-09-16 14:00:59 -07:00
Tom Peters 296ee92fd7 initialize some variables
Signed-off-by: Tom Peters <thomas.d.peters@gmail.com>
2019-08-05 17:47:26 -07:00
Rajeev Rao 0d36bbb297 TensorRT Open Source Release/5.1 2019-06-17 10:47:48 -07:00