/* Copyright (c) 2021 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 #include #include "paddle/fluid/inference/tensorrt/convert/op_converter.h" #include "paddle/fluid/inference/tensorrt/plugin/deformable_conv_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 { class DeformableConvOpConverter : public OpConverter { void operator()(const framework::proto::OpDesc& op, const framework::Scope& scope, bool test_mode) override { VLOG(3) << "convert a deformable conv op to tensorrt plugin"; framework::OpDesc op_desc(op, nullptr); std::string input_name = op_desc.Input("Input").front(); std::string offset_name = op_desc.Input("Offset").front(); std::string mask_name = op_desc.Input("Mask").front(); std::string filter_name = op_desc.Input("Filter").front(); auto* input_tensor = engine_->GetITensor(input_name); auto* offset_tensor = engine_->GetITensor(offset_name); auto* mask_tensor = engine_->GetITensor(mask_name); auto* filter_var = scope.FindVar(filter_name); auto* filter_tensor = filter_var->GetMutable(); float* filter_data = engine_->GetWeightCPUData(filter_name, filter_tensor, false); const int c_o = filter_tensor->dims()[0]; const int c_i = filter_tensor->dims()[1]; const int k_h = filter_tensor->dims()[2]; const int k_w = filter_tensor->dims()[3]; std::vector kernel_dims = {c_o, c_i, k_h, k_w}; auto strides = BOOST_GET_CONST(std::vector, op_desc.GetAttr("strides")); auto paddings = BOOST_GET_CONST(std::vector, op_desc.GetAttr("paddings")); auto dilations = BOOST_GET_CONST(std::vector, op_desc.GetAttr("dilations")); auto groups = BOOST_GET_CONST(int, op_desc.GetAttr("groups")); auto deformable_groups = BOOST_GET_CONST(int, op_desc.GetAttr("deformable_groups")); auto im2col_step = BOOST_GET_CONST(int, op_desc.GetAttr("im2col_step")); nvinfer1::Weights weights; weights.count = filter_tensor->numel(); bool with_fp16 = engine_->WithFp16() && !engine_->disable_trt_plugin_fp16(); if (with_fp16) { auto half_filter_data = new half[filter_tensor->numel()]; for (int i = 0; i < filter_tensor->numel(); i++) { half_filter_data[i] = static_cast(filter_data[i]); } weights.type = nvinfer1::DataType::kHALF; weights.values = half_filter_data; } else { weights.type = nvinfer1::DataType::kFLOAT; weights.values = filter_data; } auto* deformable_conv_plugin = new plugin::DeformableConvPlugin( with_fp16 ? nvinfer1::DataType::kHALF : nvinfer1::DataType::kFLOAT, weights, kernel_dims, strides, paddings, dilations, groups, deformable_groups, im2col_step, with_fp16); std::vector deformable_conv_inputs; deformable_conv_inputs.push_back(input_tensor); deformable_conv_inputs.push_back(offset_tensor); deformable_conv_inputs.push_back(mask_tensor); auto* deformable_conv_layer = engine_->network()->addPluginV2( deformable_conv_inputs.data(), deformable_conv_inputs.size(), *deformable_conv_plugin); std::vector output_names; output_names.push_back(op_desc.Output("Output").front()); RreplenishLayerAndOutput(deformable_conv_layer, "deformable_conv", output_names, test_mode); } }; } // namespace tensorrt } // namespace inference } // namespace paddle REGISTER_TRT_OP_CONVERTER(deformable_conv, DeformableConvOpConverter);