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.
10.6.0 GA - 2024-11-5
Key Feature and Updates:
Demo Changes
fcPlugin
in demoBERT has been removed.CustomEmbLayerNormDynamic
,CustomSkipLayerNormDynamic
, andCustomQKVToContextDynamic
) now have versions that inherit from IPluginV3 interface classes. The user can opt-in to use these V3 plugins by specifying--use-v3-plugins
to the builder scripts.CustomQKVToContextDynamic
plugin from TensorRT 10.6.0, causing an internal assertion error if either the batch or sequence dimensions differ at runtime from the ones used to serialize the engine. See the “known issues” section of TensorRT-10.6.0 release notes.IPluginV2DynamicExt
-derived plugins, when the flag:--use-v3-plugins
isn't specified in the builder scripts. The flag--use-deprecated-plugins
was added as an explicit way to enforce the default behavior, and is mutually exclusive with--use-v3-plugins
.Sample Changes
Plugin Changes
fcPlugin
has been deprecated. Its functionality has been superseded by theIMatrixMultiplyLayer
that is natively provided by TensorRT.IPluginV2
-descendent version 1 ofCustomEmbLayerNormDynamic
, to version 6, which implementsIPluginV3
.Parser Changes
Tool Updates