pad2d_op.cc 3.2 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
int Pad2dConverter(void* ctx, OpLite* op, KernelBase* kernel) {
25 26 27 28
  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 34 35 36 37 38 39 40 41 42 43 44 45
  // Get input and output vars and op attributes
  auto x_name = op_info->Input("X").front();
  auto x_type = kernel->GetInputDeclType("Input");
  CHECK(x_type->precision() == PRECISION(kFloat));
  CHECK(x_type->layout() == DATALAYOUT(kNCHW));
  auto x = scope->FindMutableTensor(x_name);
  auto x_dims = x->dims();
  auto out_name = op_info->Output("Out").front();
  auto out_type = kernel->GetOutputDeclType("Out");
  CHECK(out_type->precision() == PRECISION(kFloat));
  CHECK(out_type->layout() == DATALAYOUT(kNCHW));
  auto padding = op_info->GetAttr<std::vector<int>>("paddings");
  CHECK_EQ(padding.size(), 4);
Z
zhupengyang 已提交
46

47 48 49 50
  // X node
  std::shared_ptr<ge::Operator> x_node = nullptr;
  if (graph->HasNode(x_name)) {
    x_node = graph->GetNode(x_name);
Z
zhupengyang 已提交
51
  } else {
52
    x_node = graph->AddNode(x_name, x_dims);
Z
zhupengyang 已提交
53 54
  }

55
  // Padding node
Z
zhupengyang 已提交
56 57
  int xds = x_dims.size();
  padding.insert(padding.begin(), xds * 2 - 4, 0);
58
  auto padding_const_node =
59
      graph->AddNode(out_name + "/padding", padding, {xds, 2});
Z
zhupengyang 已提交
60

61 62 63 64 65
  // Pad node
  auto pad2d_node = graph->AddNode<ge::op::Pad>(out_name);
  pad2d_node->set_input_x(*x_node);
  pad2d_node->set_input_padding(*padding_const_node);
  auto mode = op_info->GetAttr<std::string>("mode");
Z
zhupengyang 已提交
66
  if (mode == "constant") {
67
    // Pad value node
Z
zhupengyang 已提交
68
    auto pad_value = op_info->GetAttr<float>("pad_value");
69
    auto pad_value_const_node =
70
        graph->AddNode(out_name + "/pad_value", pad_value);
71
    pad2d_node->set_input_constant_values(*pad_value_const_node);
Z
zhupengyang 已提交
72
    pad2d_node->set_attr_T(0);  // type of pad_value:  0:float  3:int32
73 74 75 76 77 78 79 80
    pad2d_node->set_attr_mode(0);
  } else if (mode == "reflect") {
    LOG(WARNING) << "[NPU] pad mode " << mode << " isn't supported in HiAI DDK";
    pad2d_node->set_attr_mode(1);
    return FAILED;
  } else {
    LOG(WARNING) << "[NPU] pad mode " << mode << " isn't supported in HiAI DDK";
    return FAILED;
Z
zhupengyang 已提交
81
  }
82
  return REBUILD_WHEN_SHAPE_CHANGED;
Z
zhupengyang 已提交
83 84 85
}

}  // namespace npu
86
}  // namespace subgraph
Z
zhupengyang 已提交
87 88 89
}  // namespace lite
}  // namespace paddle

90 91 92
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         pad2d,
                         paddle::lite::subgraph::npu::Pad2dConverter);