reshape_op.cc 3.3 KB
Newer Older
W
Wangzheee 已提交
1 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
/* 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"

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

namespace paddle {
namespace inference {
namespace tensorrt {

/*
 * ReshapeOp
 */
class ReshapeOpConverter : public OpConverter {
 public:
  void operator()(const framework::proto::OpDesc& op,
33 34
                  const framework::Scope& scope,
                  bool test_mode) override {
W
Wangzheee 已提交
35 36 37
    framework::OpDesc op_desc(op, nullptr);
    // Declare inputs
    auto* input = engine_->GetITensor(op_desc.Input("X")[0]);
38

39
    std::vector<int> shape =
R
Ruibiao Chen 已提交
40
        PADDLE_GET_CONST(std::vector<int>, op_desc.GetAttr("shape"));
W
Wangzheee 已提交
41 42
    int nbDims_num = shape.size();
    nvinfer1::Dims reshape_dim;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    nvinfer1::ITensor* real_shape_tensor = nullptr;
    std::vector<nvinfer1::ITensor*> concat_inputs;
    bool one_input = false;
    if (engine_->with_dynamic_shape()) {
      if (op_desc.Inputs().find("ShapeTensor") != op_desc.Inputs().end() &&
          op_desc.Input("ShapeTensor").size() > 0) {
        for (auto name : op_desc.Input("ShapeTensor"))
          concat_inputs.push_back(engine_->GetITensor(name));
        real_shape_tensor = Concat(concat_inputs);
      } else if (op_desc.Inputs().find("Shape") != op_desc.Inputs().end() &&
                 op_desc.Input("Shape").size() > 0) {
        real_shape_tensor = engine_->GetITensor(op_desc.Input("Shape")[0]);
      } else {
        reshape_dim.nbDims = nbDims_num;
        for (int i = 0; i < nbDims_num; ++i) {
          reshape_dim.d[i] = shape[i];
        }
        one_input = true;
W
Wangzheee 已提交
61 62 63 64 65 66 67 68
      }
    } else {  // running the TRT Static Shape mode
      reshape_dim.nbDims = nbDims_num - 1;
      for (int i = 0; i < nbDims_num - 1; ++i) {
        reshape_dim.d[i] = shape[i + 1];
      }
    }
    auto* layer = TRT_ENGINE_ADD_LAYER(engine_, Shuffle, *input);
69 70 71 72
    if (!engine_->with_dynamic_shape() || one_input)
      layer->setReshapeDimensions(reshape_dim);
    else
      layer->setInput(1, *real_shape_tensor);
Z
zhoutianzi666 已提交
73 74 75 76 77 78 79 80 81 82

    PADDLE_ENFORCE_GE(
        layer->getOutput(0)->getDimensions().nbDims,
        0,
        platform::errors::InvalidArgument(
            "Errors occures in Paddle-TRT reshape2 op, try to use C++ Api "
            "config.Exp_DisableTensorRtOPs({\"reshape2\"})\n; or Python Api "
            "config.exp_disable_tensorrt_ops([\"reshape2\"]) to forbid "
            "reshape2 op into "
            "Paddle-TRT."));
W
Wangzheee 已提交
83 84 85 86 87 88 89 90 91 92
    auto output_name = op_desc.Output("Out")[0];
    RreplenishLayerAndOutput(layer, "reshape", {output_name}, test_mode);
  }
};

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

REGISTER_TRT_OP_CONVERTER(reshape, ReshapeOpConverter);
93
REGISTER_TRT_OP_CONVERTER(reshape2, ReshapeOpConverter);