act_op.cc 3.7 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
int ActConverter(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();
Y
Yan Chunwei 已提交
29
  auto op_type = op_info->Type();
30
  auto scope = op->scope();
31
  VLOG(3) << "[NPU] Converting " + op_type + "...";
Y
Yan Chunwei 已提交
32

33 34 35 36 37
  // Get input and output vars and op attributes
  auto x_name = op_info->Input("X").front();
  auto x = scope->FindMutableTensor(x_name);
  auto x_dims = x->dims();
  auto out_name = op_info->Output("Out").front();
Y
Yan Chunwei 已提交
38

39
  // X node
40 41 42
  std::shared_ptr<Node> x_node = nullptr;
  if (graph->Has(x_name)) {
    x_node = graph->Get(x_name);
43
  } else {
44
    x_node = graph->Add(x_name, *x);
45 46 47
  }

  // Act node
48 49 50
  auto act_node = graph->Add<ge::op::Activation>(out_name);
  auto act_op = act_node->data<ge::op::Activation>();
  act_op->set_input_x(*x_node->data());
51 52
  // TODO(hong19860320) set the coef value for act Ops, such as leaky_relu,
  // clipped_relu etc.
53
  act_op->set_attr_mode(CvtActMode(op_type));
54 55
  if (op_type == "relu_clipped") {
    auto Relu_clipped_coef = op_info->GetAttr<float>("Relu_clipped_coef");
56
    act_op->set_attr_coef(Relu_clipped_coef);
Z
zhupengyang 已提交
57 58
  } else if (op_type == "relu6") {
    float Relu_clipped_coef = 6.f;
59
    act_op->set_attr_coef(Relu_clipped_coef);
60 61
  } else if (op_type == "leaky_relu") {
    auto alpha = op_info->GetAttr<float>("alpha");
62
    act_op->set_attr_negative_slope(alpha);
63 64 65
  } else if (op_type == "hard_sigmoid") {
    auto slope = op_info->GetAttr<float>("slope");
    auto offset = op_info->GetAttr<float>("offset");
66 67
    act_op->set_attr_negative_slope(slope);
    act_op->set_attr_coef(offset);
68
  }
69
  return SUCCESS;
Y
Yan Chunwei 已提交
70 71 72
}

}  // namespace npu
73
}  // namespace subgraph
Y
Yan Chunwei 已提交
74 75 76
}  // namespace lite
}  // namespace paddle

77 78
REGISTER_SUBGRAPH_BRIDGE(sigmoid,
                         kNPU,
79
                         paddle::lite::subgraph::npu::ActConverter);
80 81 82 83
REGISTER_SUBGRAPH_BRIDGE(relu, kNPU, paddle::lite::subgraph::npu::ActConverter);
REGISTER_SUBGRAPH_BRIDGE(tanh, kNPU, paddle::lite::subgraph::npu::ActConverter);
REGISTER_SUBGRAPH_BRIDGE(relu_clipped,
                         kNPU,
84
                         paddle::lite::subgraph::npu::ActConverter);
85 86
REGISTER_SUBGRAPH_BRIDGE(relu6,
                         kNPU,
87
                         paddle::lite::subgraph::npu::ActConverter);
88 89
REGISTER_SUBGRAPH_BRIDGE(leaky_relu,
                         kNPU,
90
                         paddle::lite::subgraph::npu::ActConverter);
91 92 93
REGISTER_SUBGRAPH_BRIDGE(abs, kNPU, paddle::lite::subgraph::npu::ActConverter);
REGISTER_SUBGRAPH_BRIDGE(softsign,
                         kNPU,
94
                         paddle::lite::subgraph::npu::ActConverter);
95 96 97 98 99
REGISTER_SUBGRAPH_BRIDGE(softplus,
                         kNPU,
                         paddle::lite::subgraph::npu::ActConverter);
REGISTER_SUBGRAPH_BRIDGE(hard_sigmoid,
                         kNPU,
100
                         paddle::lite::subgraph::npu::ActConverter);