activation_op.cpp 2.1 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);
34 35 36
#endif  // SIGMOID_OP

#ifdef TANH_OP
37
DEFINE_ACTIVATION_INFERSHAPE(Tanh);
38 39 40
#endif  // TANH_OP

#ifdef LOG_OP
41
DEFINE_ACTIVATION_INFERSHAPE(Log);
42
#endif  // LOG_OP
43

E
eclipsess 已提交
44 45 46 47
}  // namespace operators
}  // namespace paddle_mobile

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

#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