multiclass_nms3_op.cc 6.2 KB
Newer Older
1
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
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 <vector>
#include "paddle/fluid/inference/tensorrt/convert/op_converter.h"

namespace paddle {
namespace framework {
class Scope;
namespace proto {
class OpDesc;
}  // namespace proto
}  // namespace framework
}  // namespace paddle

namespace paddle {
namespace inference {
namespace tensorrt {

class MultiClassNMS3OpConverter : public OpConverter {
 public:
  void operator()(const framework::proto::OpDesc& op,
                  const framework::Scope& scope, bool test_mode) override {
    VLOG(3) << "convert a fluid multiclassNMS3 op to tensorrt plugin";

    // for now, only work for static shape and regular tensor
    framework::OpDesc op_desc(op, nullptr);

    std::string bboxes = op_desc.Input("BBoxes").front();
    std::string scores = op_desc.Input("Scores").front();
    std::string output_name = op_desc.Output("Out").front();
    std::string rois_num_name = op_desc.Output("NmsRoisNum").front();
41
    std::string index_name = op_desc.Output("Index").front();
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

    auto* bboxes_tensor = engine_->GetITensor(bboxes);
    auto* scores_tensor = engine_->GetITensor(scores);

    int background_label =
        BOOST_GET_CONST(int, op_desc.GetAttr("background_label"));
    float score_threshold =
        BOOST_GET_CONST(float, op_desc.GetAttr("score_threshold"));
    int nms_top_k = BOOST_GET_CONST(int, op_desc.GetAttr("nms_top_k"));
    float nms_threshold =
        BOOST_GET_CONST(float, op_desc.GetAttr("nms_threshold"));
    int keep_top_k = BOOST_GET_CONST(int, op_desc.GetAttr("keep_top_k"));
    bool normalized = BOOST_GET_CONST(bool, op_desc.GetAttr("normalized"));
    int num_classes = scores_tensor->getDimensions().d[0];

    auto bboxes_dims = bboxes_tensor->getDimensions();
    nvinfer1::Dims3 bboxes_expand_dims(bboxes_dims.d[0], 1, bboxes_dims.d[1]);
    auto* bboxes_expand_layer =
        TRT_ENGINE_ADD_LAYER(engine_, Shuffle, *bboxes_tensor);
    bboxes_expand_layer->setReshapeDimensions(bboxes_expand_dims);

    nvinfer1::Permutation permutation{1, 0};
    auto* scores_transpose_layer =
        TRT_ENGINE_ADD_LAYER(engine_, Shuffle, *scores_tensor);
    scores_transpose_layer->setFirstTranspose(permutation);

    std::vector<nvinfer1::ITensor*> batch_nms_inputs;
    batch_nms_inputs.push_back(bboxes_expand_layer->getOutput(0));
    batch_nms_inputs.push_back(scores_transpose_layer->getOutput(0));

    constexpr bool shareLocation = true;
    constexpr bool clip_boxes = false;

    const std::vector<nvinfer1::PluginField> fields{
        {"shareLocation", &shareLocation, nvinfer1::PluginFieldType::kINT32, 1},
        {"backgroundLabelId", &background_label,
         nvinfer1::PluginFieldType::kINT32, 1},
        {"numClasses", &num_classes, nvinfer1::PluginFieldType::kINT32, 1},
        {"topK", &nms_top_k, nvinfer1::PluginFieldType::kINT32, 1},
        {"keepTopK", &keep_top_k, nvinfer1::PluginFieldType::kINT32, 1},
        {"scoreThreshold", &score_threshold,
         nvinfer1::PluginFieldType::kFLOAT32, 1},
        {"iouThreshold", &nms_threshold, nvinfer1::PluginFieldType::kFLOAT32,
         1},
        {"isNormalized", &normalized, nvinfer1::PluginFieldType::kINT32, 1},
        {"clipBoxes", &clip_boxes, nvinfer1::PluginFieldType::kINT32, 1},
    };

    nvinfer1::PluginFieldCollection* plugin_collections =
        static_cast<nvinfer1::PluginFieldCollection*>(
            malloc(sizeof(*plugin_collections) +
                   fields.size() * sizeof(nvinfer1::PluginField)));
    plugin_collections->nbFields = static_cast<int>(fields.size());
    plugin_collections->fields = fields.data();

    auto creator = GetPluginRegistry()->getPluginCreator("BatchedNMS_TRT", "1");
    auto batch_nms_plugin =
        creator->createPlugin("BatchNMSPlugin", plugin_collections);
    free(plugin_collections);

    auto batch_nms_layer = engine_->network()->addPluginV2(
        batch_nms_inputs.data(), batch_nms_inputs.size(), *batch_nms_plugin);
    auto nmsed_boxes = batch_nms_layer->getOutput(1);
    auto nmsed_scores = batch_nms_layer->getOutput(2);
    auto nmsed_classes = batch_nms_layer->getOutput(3);

    auto nmsed_scores_transpose_layer =
        TRT_ENGINE_ADD_LAYER(engine_, Shuffle, *nmsed_scores);
    nmsed_scores_transpose_layer->setReshapeDimensions(
        nvinfer1::Dims2(keep_top_k, 1));
    auto nmsed_classes_reshape_layer =
        TRT_ENGINE_ADD_LAYER(engine_, Shuffle, *nmsed_classes);
    nmsed_classes_reshape_layer->setReshapeDimensions(
        nvinfer1::Dims2(keep_top_k, 1));

    std::vector<nvinfer1::ITensor*> concat_inputs;
    concat_inputs.push_back(nmsed_classes_reshape_layer->getOutput(0));
    concat_inputs.push_back(nmsed_scores_transpose_layer->getOutput(0));
    concat_inputs.push_back(nmsed_boxes);

    auto nms_concat_layer = TRT_ENGINE_ADD_LAYER(
        engine_, Concatenation, concat_inputs.data(), concat_inputs.size());
    nms_concat_layer->setAxis(1);

126 127 128 129 130 131 132 133
    // add fake index as output to be consistent with the outputs of
    // multiclass_nms3
    std::vector<uint32_t> index(1, 0);
    auto constant_layer = TRT_ENGINE_ADD_LAYER(
        engine_, Constant, nvinfer1::Dims2(1, 1),
        nvinfer1::Weights{nvinfer1::DataType::kINT32,
                          static_cast<void*>(index.data()), 1});

134 135 136 137
    RreplenishLayerAndOutput(batch_nms_layer, "multiclass_nms3",
                             {rois_num_name}, test_mode);
    RreplenishLayerAndOutput(nms_concat_layer, "multiclass_nms3", {output_name},
                             test_mode);
138 139
    RreplenishLayerAndOutput(constant_layer, "multiclass_nms3", {index_name},
                             test_mode);
140 141 142 143 144 145 146 147
  }
};

}  // namespace tensorrt
}  // namespace inference
}  // namespace paddle

REGISTER_TRT_OP_CONVERTER(multiclass_nms3, MultiClassNMS3OpConverter);