pad2d_op.cc 2.6 KB
Newer Older
Z
zhupengyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2019 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.

15
#include "lite/kernels/npu/bridges/graph.h"
Z
zhupengyang 已提交
16
#include "lite/kernels/npu/bridges/registry.h"
17
#include "lite/kernels/npu/bridges/utility.h"
Z
zhupengyang 已提交
18 19 20

namespace paddle {
namespace lite {
21
namespace subgraph {
Z
zhupengyang 已提交
22 23
namespace npu {

24 25 26 27 28
int Pad2dConverter(void* ctx, OpLite* op) {
  CHECK(ctx != nullptr);
  CHECK(op != nullptr);
  auto graph = static_cast<Graph*>(ctx);
  auto op_info = op->op_info();
Z
zhupengyang 已提交
29
  auto op_type = op_info->Type();
30 31
  auto scope = op->scope();
  VLOG(3) << "[NPU] Converting " + op_type + "...";
Z
zhupengyang 已提交
32 33

  auto x_var_name = op_info->Input("X").front();
34 35 36
  auto out_var_name = op_info->Output("Out").front();
  auto pad2d_node = graph->AddNode<ge::op::Pad>(out_var_name);
  pad2d_node->set_input_x(*graph->GetNode(x_var_name));
Z
zhupengyang 已提交
37 38 39 40 41

  auto mode = op_info->GetAttr<std::string>("mode");
  if (mode == "constant") {
    pad2d_node->set_attr_mode(0);
  } else if (mode == "reflect") {
42
    LOG(WARNING) << "[NPU] pad mode " << mode << " isn't supported in HiAI DDK";
Z
zhupengyang 已提交
43
    pad2d_node->set_attr_mode(1);
44
    return FAILED;
Z
zhupengyang 已提交
45
  } else {
46 47
    LOG(WARNING) << "[NPU] pad mode " << mode << " isn't supported in HiAI DDK";
    return FAILED;
Z
zhupengyang 已提交
48 49 50 51 52 53 54
  }

  auto x_dims = scope->FindTensor(x_var_name)->dims();
  auto padding = op_info->GetAttr<std::vector<int>>("paddings");
  CHECK_EQ(padding.size(), 4);
  int xds = x_dims.size();
  padding.insert(padding.begin(), xds * 2 - 4, 0);
55 56 57
  auto padding_const_node =
      graph->AddNode(out_var_name + "/padding", padding, {xds, 2});
  pad2d_node->set_input_padding(*padding_const_node);
Z
zhupengyang 已提交
58 59 60

  if (mode == "constant") {
    auto pad_value = op_info->GetAttr<float>("pad_value");
61 62 63
    auto pad_value_const_node =
        graph->AddNode(out_var_name + "/pad_value", pad_value);
    pad2d_node->set_input_constant_values(*pad_value_const_node);
Z
zhupengyang 已提交
64 65
    pad2d_node->set_attr_T(0);  // type of pad_value:  0:float  3:int32
  }
66
  return REBUILD_WHEN_SHAPE_CHANGED;
Z
zhupengyang 已提交
67 68 69
}

}  // namespace npu
70
}  // namespace subgraph
Z
zhupengyang 已提交
71 72 73
}  // namespace lite
}  // namespace paddle

74 75 76
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         pad2d,
                         paddle::lite::subgraph::npu::Pad2dConverter);