-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
751 additions
and
9 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. */ | ||
|
||
#include "paddle/fluid/inference/tensorrt/convert/op_converter.h" | ||
#include "paddle/fluid/inference/tensorrt/plugin/roi_align_op_plugin.h" | ||
|
||
namespace paddle { | ||
namespace framework { | ||
class Scope; | ||
|
||
namespace proto { | ||
class OpDesc; | ||
} // namespace proto | ||
} // namespace framework | ||
} // namespace paddle | ||
|
||
namespace paddle { | ||
namespace inference { | ||
namespace tensorrt { | ||
|
||
/* | ||
* Roi Align Op | ||
*/ | ||
class RoiAlignOpConverter : public OpConverter { | ||
public: | ||
void operator()(const framework::proto::OpDesc& op, | ||
const framework::Scope& scope, bool test_mode) override { | ||
VLOG(3) << "convert a fluid roi align op to tensorrt plugin"; | ||
|
||
framework::OpDesc op_desc(op, nullptr); | ||
std::string input_name = op_desc.Input("X").front(); | ||
std::string rois_name = op_desc.Input("ROIs").front(); | ||
std::string output_name = op_desc.Output("Out").front(); | ||
|
||
const auto pooled_height = | ||
BOOST_GET_CONST(int, op_desc.GetAttr("pooled_height")); | ||
const auto pooled_width = | ||
BOOST_GET_CONST(int, op_desc.GetAttr("pooled_width")); | ||
const auto spatial_scale = | ||
BOOST_GET_CONST(float, op_desc.GetAttr("spatial_scale")); | ||
const auto sampling_ratio = | ||
BOOST_GET_CONST(int, op_desc.GetAttr("sampling_ratio")); | ||
|
||
const auto input_tensor = engine_->GetITensor(input_name); | ||
const auto rois_tensor = engine_->GetITensor(rois_name); | ||
|
||
const nvinfer1::DataType data_type_ = engine_->WithFp16() | ||
? nvinfer1::DataType::kHALF | ||
: nvinfer1::DataType::kFLOAT; | ||
|
||
std::vector<nvinfer1::ITensor*> inputs{input_tensor, rois_tensor}; | ||
nvinfer1::ILayer* layer = nullptr; | ||
|
||
PADDLE_ENFORCE_EQ( | ||
engine_->with_dynamic_shape(), true, | ||
platform::errors::InvalidArgument( | ||
"TRT roi align plugin only accept the dynamic shape, because that " | ||
"the roi_align will change the batch size.")); | ||
|
||
auto* roi_align_plugin = new plugin::RoiAlignPluginDynamic( | ||
data_type_, pooled_height, pooled_width, spatial_scale, sampling_ratio); | ||
auto roi_align_layer = engine_->network()->addPluginV2( | ||
inputs.data(), inputs.size(), *roi_align_plugin); | ||
layer = roi_align_layer; | ||
|
||
std::vector<std::string> output_names{output_name}; | ||
RreplenishLayerAndOutput(layer, "roi_align", output_names, test_mode); | ||
} | ||
}; | ||
|
||
} // namespace tensorrt | ||
} // namespace inference | ||
} // namespace paddle | ||
|
||
REGISTER_TRT_OP_CONVERTER(roi_align, RoiAlignOpConverter); |
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.
0280122
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕵️ CI failures summary
🔍PR: #31226 Commit ID: 0280122 contains failed CI.