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 21 22 23 24 25
#define DEFINE_ACTIVATION_INFERSHAPE(OpName)                   \
  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);                    \
    this->param_.Out()->set_lod(this->param_.InputX()->lod()); \
26 27 28
  }

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

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

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

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

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

namespace ops = paddle_mobile::operators;
53
#ifdef RELU_OP
L
for  
liuruilong 已提交
54 55
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU(relu, ops::ReluOp);
56
REGISTER_OPERATOR_CPU(relu6, ops::Relu6Op);
L
for  
liuruilong 已提交
57 58
#endif
#ifdef PADDLE_MOBILE_MALI_GPU
S
sharper 已提交
59
REGISTER_OPERATOR_MALI_GPU(relu, ops::ReluOp);
L
for  
liuruilong 已提交
60 61 62
#endif
#ifdef PADDLE_MOBILE_FPGA
#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