elementwise_ops.cc 4.6 KB
Newer Older
Y
Yan Chunwei 已提交
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"
Y
Yan Chunwei 已提交
18 19 20

namespace paddle {
namespace lite {
21
namespace subgraph {
Y
Yan Chunwei 已提交
22 23
namespace npu {

24 25
std::vector<int64_t> CvtYShape(const Tensor& x, Tensor* y, int axis) {
  auto x_dims = x.dims();
26
  CHECK_EQ(x_dims.size(), 4UL) << "[NPU] Only support 4-dimension x";
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  auto y_dims = y->dims();
  CHECK_GE(x_dims.size(), y_dims.size());

  if (axis < 0) {
    axis += x_dims.size();
  }

  std::vector<int64_t> y_new_shape(y_dims.Vectorize());
  if (y_new_shape.size() == 4UL) {
    return y_new_shape;
  }
  for (int i = 0; i < axis; i++) {
    y_new_shape.insert(y_new_shape.begin(), 1);
  }
  while (y_new_shape.size() < 4) {
    y_new_shape.push_back(1);
  }
  CHECK_EQ(y_new_shape.size(), 4UL);
  return y_new_shape;
}

48 49 50 51 52
int ElementwiseConverter(void* ctx, OpLite* op) {
  CHECK(ctx != nullptr);
  CHECK(op != nullptr);
  auto graph = static_cast<Graph*>(ctx);
  auto op_info = op->op_info();
53
  auto op_type = op_info->Type();
54 55
  auto scope = op->scope();
  VLOG(3) << "[NPU] Converting " + op_type + "...";
56

Y
Yan Chunwei 已提交
57 58
  auto x_var_name = op_info->Input("X").front();
  auto y_var_name = op_info->Input("Y").front();
59
  auto out_var_name = op_info->Output("Out").front();
60
  auto axis = op_info->GetAttr<int>("axis");
Y
Yan Chunwei 已提交
61

62
  std::shared_ptr<ge::Operator> elementwise_node = nullptr;
63
  std::shared_ptr<ge::Operator> x_node = graph->GetNode(x_var_name);
64
  std::shared_ptr<ge::Operator> y_node = nullptr;
65 66
  if (graph->HasNode(y_var_name)) {
    y_node = graph->GetNode(y_var_name);
Y
Yan Chunwei 已提交
67
  } else {
68 69 70
    auto x = scope->FindTensor(x_var_name);
    auto y = scope->FindMutableTensor(y_var_name);
    auto y_new_shape = CvtYShape(*x, y, axis);
71
    y_node = graph->AddNode(y_var_name, y, y_new_shape);
Y
Yan Chunwei 已提交
72 73
  }

74 75
  if (op_type == "elementwise_add" ||
      op_type == "fusion_elementwise_add_activation") {
76
    auto elt_node = graph->AddNode<ge::op::Add>(out_var_name);
77 78 79 80
    elt_node->set_input_x1(*x_node);
    elt_node->set_input_x2(*y_node);
    elementwise_node = elt_node;
  } else if (op_type == "elementwise_sub") {
81
    auto elt_node = graph->AddNode<ge::op::Sub>(out_var_name);
82 83 84 85
    elt_node->set_input_x1(*x_node);
    elt_node->set_input_x2(*y_node);
    elementwise_node = elt_node;
  } else if (op_type == "elementwise_mul") {
86
    auto elt_node = graph->AddNode<ge::op::Mul>(out_var_name);
87 88 89 90
    elt_node->set_input_x(*x_node);
    elt_node->set_input_y(*y_node);
    elementwise_node = elt_node;
  } else if (op_type == "elementwise_div") {
91
    auto elt_node = graph->AddNode<ge::op::RealDiv>(out_var_name);
92 93 94 95
    elt_node->set_input_x1(*x_node);
    elt_node->set_input_x2(*y_node);
    elementwise_node = elt_node;
  } else {
96 97
    LOG(WARNING) << "[NPU] Unsupported op type: " << op_type;
    return FAILED;
98
  }
Y
Yan Chunwei 已提交
99

100 101
  if (op_type == "fusion_elementwise_add_activation") {
    auto act_type = op_info->GetAttr<std::string>("act_type");
102
    auto act_node = graph->AddNode<ge::op::Activation>(out_var_name);
103 104 105
    act_node->set_input_x(*elementwise_node);
    // TODO(hong19860320) set the coef value for act Ops, such as leaky_relu,
    // clipped_relu etc.
106
    act_node->set_attr_mode(CvtActMode(act_type));
107
  }
108
  return REBUILD_WHEN_SHAPE_CHANGED;
Y
Yan Chunwei 已提交
109 110 111
}

}  // namespace npu
112
}  // namespace subgraph
Y
Yan Chunwei 已提交
113 114 115
}  // namespace lite
}  // namespace paddle

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         elementwise_add,
                         paddle::lite::subgraph::npu::ElementwiseConverter);
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         fusion_elementwise_add_activation,
                         paddle::lite::subgraph::npu::ElementwiseConverter);
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         elementwise_sub,
                         paddle::lite::subgraph::npu::ElementwiseConverter);
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         elementwise_mul,
                         paddle::lite::subgraph::npu::ElementwiseConverter);
REGISTER_SUBGRAPH_BRIDGE(NPU,
                         elementwise_div,
                         paddle::lite::subgraph::npu::ElementwiseConverter);