-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TensorRT OSS 21.04 release #1185
Merged
Merged
Conversation
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
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
pranavm-nvidia
approved these changes
Apr 12, 2021
rajeevsrao
force-pushed
the
dev/21.04-release
branch
from
April 12, 2021 19:08
67a520c
to
7cf5f18
Compare
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
…to fold Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
…IDIA#1028 Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
PriorBox plugin serialize CPU metadata (array size) A and GPU data (array elements) B' in engine. B' is modified from CPU array B when constructing the object. A deserialized object then holds data A and B' which is different from the original (A and B). If a new object is created from a deserialized one via `PriorBox::clone()`, which rebuilds array elements at GPU side from CPU holding array A and B', the generated GPU data is incorrect (A and B''), resulting in wrong inference result. As PriorBox is designed to track data in specific format, we now serialize only the CPU data A and B, i.e. the parameters that used to construct a PriorBox object, to engine. bad image processing with deserialized engine 1. Fixed the memory deallocation error in plugin PriorBox::clone() method even without serialization by initializing empty pointer to nullptr. 2. Initialized weights to empty structs 3. Added mParam.aspectRatios to serialization and deserialization since mParam.aspectRatios are different from aspectRatios device weights in count and values. Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
1. add varlen mha fp16 slen=384 kernel for sm_86 2. referesh all sm_86 kernels now use NVCC -gencode=arch=compute_86,code=\"sm_86\" 3. use unfused kernel for fixed len s=384 fp16 Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
rajeevsrao
force-pushed
the
dev/21.04-release
branch
from
April 12, 2021 19:14
7cf5f18
to
3ea9099
Compare
Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>
kevinch-nv
approved these changes
Apr 12, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
SoftMax
,LogSoftmax
,Squeeze
, andUnsqueeze
.EyeLike
andGatherElements
operators.Changed
reinterpret_cast
#146Removed