activation_op.cpp 2.3 KB
Newer Older
E
eclipsess 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include "operators/activation_op.h"
16

E
eclipsess 已提交
17 18 19
namespace paddle_mobile {
namespace operators {

20
#define DEFINE_ACTIVATION_INFERSHAPE(OpName)                \
21 22 23 24 25 26 27
  template <typename Dtype, typename T>                     \
  void OpName##Op<Dtype, T>::InferShape() const {           \
    const auto &input_dims = this->param_.InputX()->dims(); \
    this->param_.Out()->Resize(input_dims);                 \
  }

#ifdef RELU_OP
28 29
DEFINE_ACTIVATION_INFERSHAPE(Relu);
DEFINE_ACTIVATION_INFERSHAPE(Relu6);
30
#endif  // RELU_OP
L
liuruilong 已提交
31

32
#ifdef SIGMOID_OP
33
DEFINE_ACTIVATION_INFERSHAPE(Sigmoid);
qnqinan's avatar
qnqinan 已提交
34 35 36 37
namespace ops = paddle_mobile::operators;
#ifdef PADDLE_MOBILE_FPGA
REGISTER_OPERATOR_FPGA(sigmoid, ops::SigmoidOp);
#endif
38 39 40
#endif  // SIGMOID_OP

#ifdef TANH_OP
41
DEFINE_ACTIVATION_INFERSHAPE(Tanh);
42 43 44
#endif  // TANH_OP

#ifdef LOG_OP
45
DEFINE_ACTIVATION_INFERSHAPE(Log);
46
#endif  // LOG_OP
47

E
eclipsess 已提交
48 49 50 51
}  // namespace operators
}  // namespace paddle_mobile

namespace ops = paddle_mobile::operators;
52
#ifdef RELU_OP
L
for  
liuruilong 已提交
53 54
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU(relu, ops::ReluOp);
55
REGISTER_OPERATOR_CPU(relu6, ops::Relu6Op);
L
for  
liuruilong 已提交
56 57
#endif
#ifdef PADDLE_MOBILE_MALI_GPU
S
sharper 已提交
58
REGISTER_OPERATOR_MALI_GPU(relu, ops::ReluOp);
L
for  
liuruilong 已提交
59 60
#endif
#ifdef PADDLE_MOBILE_FPGA
qnqinan's avatar
update  
qnqinan 已提交
61
REGISTER_OPERATOR_FPGA(relu, ops::ReluOp);
L
for  
liuruilong 已提交
62
#endif
Y
yangfei 已提交
63 64 65
#ifdef PADDLE_MOBILE_CL
REGISTER_OPERATOR_CL(relu, ops::ReluOp);
#endif
66
#endif  // RELU_OP
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

#ifdef SIGMOID_OP
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU(sigmoid, ops::SigmoidOp);
#endif
#endif  // SIGMOID_OP

#ifdef TANH_OP
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU(tanh, ops::TanhOp);
#endif
#ifdef PADDLE_MOBILE_FPGA
REGISTER_OPERATOR_FPGA(tanh, ops::TanhOp);
#endif
#endif  // TANH_OP

#ifdef LOG_OP
REGISTER_OPERATOR_CPU(log, ops::LogOp);
#endif  // LOG_OP