Skip to content

Commit

Permalink
Add support for DisentangledAttentionPlugin (#836)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Chen <[email protected]>
  • Loading branch information
kevinch-nv authored Apr 28, 2022
1 parent 5f27e45 commit 4ebfd96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ModelImporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,8 @@ bool ModelImporter::supportsOperator(const char* op_name) const
{
return false;
}
if (std::string(op_name) == "EfficientNMS_TRT" || std::string(op_name) == "PyramidROIAlign_TRT" || std::string(op_name) == "MultilevelCropAndResize_TRT")
if (std::string(op_name) == "EfficientNMS_TRT" || std::string(op_name) == "PyramidROIAlign_TRT" || std::string(op_name) == "MultilevelCropAndResize_TRT"
|| std::string(op_name) == "DisentangledAttention_TRT")
{
return true;
}
Expand Down

0 comments on commit 4ebfd96

Please sign in to comment.