activation_op.cu 4.4 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

   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. */

Q
qijun 已提交
15
#define EIGEN_USE_GPU
Q
qijun 已提交
16
#include "paddle/operators/activation_op.h"
17

D
dongzhihong 已提交
18
namespace ops = paddle::operators;
D
dongzhihong 已提交
19

D
dongzhihong 已提交
20
REGISTER_OP_GPU_KERNEL(sigmoid,
Q
qijun 已提交
21
                       ops::ActivationKernel<paddle::platform::GPUPlace, float,
Q
qijun 已提交
22
                                             ops::SigmoidFunctor<float>>);
23
REGISTER_OP_GPU_KERNEL(
Q
qijun 已提交
24
    sigmoid_grad, ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
Q
qijun 已提交
25
                                            ops::SigmoidGradFunctor<float>>);
Q
qijun 已提交
26

Q
qijun 已提交
27 28 29
REGISTER_OP_GPU_KERNEL(
    exp,
    ops::ActivationKernel<paddle::platform::GPUPlace, float, ops::ExpFunctor>);
Q
qijun 已提交
30
REGISTER_OP_GPU_KERNEL(exp_grad,
Q
qijun 已提交
31 32
                       ops::ActivationGradKernel<paddle::platform::GPUPlace,
                                                 float, ops::ExpGradFunctor>);
Q
qijun 已提交
33
REGISTER_OP_GPU_KERNEL(relu,
Q
qijun 已提交
34 35 36 37 38
                       ops::ActivationKernel<paddle::platform::GPUPlace, float,
                                             ops::ReluFunctor<float>>);
REGISTER_OP_GPU_KERNEL(
    relu_grad, ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
                                         ops::ReluGradFunctor<float>>);
39

Q
qijun 已提交
40 41 42
REGISTER_OP_GPU_KERNEL(
    tanh,
    ops::ActivationKernel<paddle::platform::GPUPlace, float, ops::TanhFunctor>);
43 44 45 46
REGISTER_OP_GPU_KERNEL(
    tanh_grad, ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
                                         ops::TanhGradFunctor<float>>);

Q
qijun 已提交
47 48 49
REGISTER_OP_GPU_KERNEL(
    sqrt,
    ops::ActivationKernel<paddle::platform::GPUPlace, float, ops::SqrtFunctor>);
50 51 52 53 54
REGISTER_OP_GPU_KERNEL(
    sqrt_grad, ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
                                         ops::SqrtGradFunctor<float>>);

REGISTER_OP_GPU_KERNEL(
Q
qijun 已提交
55 56 57 58 59
    abs,
    ops::ActivationKernel<paddle::platform::GPUPlace, float, ops::AbsFunctor>);
REGISTER_OP_GPU_KERNEL(abs_grad,
                       ops::ActivationGradKernel<paddle::platform::GPUPlace,
                                                 float, ops::AbsGradFunctor>);
60 61 62 63 64 65 66 67 68

REGISTER_OP_GPU_KERNEL(reciprocal,
                       ops::ActivationKernel<paddle::platform::GPUPlace, float,
                                             ops::ReciprocalFunctor<float>>);
REGISTER_OP_GPU_KERNEL(
    reciprocal_grad,
    ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
                              ops::ReciprocalGradFunctor<float>>);

Q
qijun 已提交
69 70 71
REGISTER_OP_GPU_KERNEL(
    log,
    ops::ActivationKernel<paddle::platform::GPUPlace, float, ops::LogFunctor>);
72 73 74 75 76 77
REGISTER_OP_GPU_KERNEL(
    log_grad, ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
                                        ops::LogGradFunctor<float>>);

REGISTER_OP_GPU_KERNEL(square,
                       ops::ActivationKernel<paddle::platform::GPUPlace, float,
Q
qijun 已提交
78
                                             ops::SquareFunctor>);
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
REGISTER_OP_GPU_KERNEL(
    square_grad, ops::ActivationGradKernel<paddle::platform::GPUPlace, float,
                                           ops::SquareGradFunctor<float>>);

REGISTER_OP_GPU_KERNEL(brelu,
                       ops::BReluKernel<paddle::platform::GPUPlace, float>);
REGISTER_OP_GPU_KERNEL(brelu_grad,
                       ops::BReluGradKernel<paddle::platform::GPUPlace, float>);

REGISTER_OP_GPU_KERNEL(soft_relu,
                       ops::SoftReluKernel<paddle::platform::GPUPlace, float>);
REGISTER_OP_GPU_KERNEL(
    soft_relu_grad, ops::SoftReluGradKernel<paddle::platform::GPUPlace, float>);

REGISTER_OP_GPU_KERNEL(pow, ops::PowKernel<paddle::platform::GPUPlace, float>);
REGISTER_OP_GPU_KERNEL(pow_grad,
                       ops::PowGradKernel<paddle::platform::GPUPlace, float>);

REGISTER_OP_GPU_KERNEL(stanh,
                       ops::STanhKernel<paddle::platform::GPUPlace, float>);
REGISTER_OP_GPU_KERNEL(stanh_grad,
Q
qijun 已提交
100
                       ops::STanhGradKernel<paddle::platform::GPUPlace, float>);