sigmoid_op.cc 2.1 KB
Newer Older
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. */

15
#include "paddle/operators/sigmoid_op.h"
16 17 18
namespace paddle {
namespace operators {

19
class SigmoidOp : public OperatorWithKernel {
20
protected:
21 22 23 24
  void InferShape(const InferShapeContext &ctx) const override {
    PADDLE_ENFORCE(ctx.InputSize() == 1, "Sigmoid Op only have one input");
    PADDLE_ENFORCE(ctx.OutputSize() == 1, "Sigmoid Op only have one output");
    ctx.Output<Tensor>(0)->Resize(ctx.Input<Tensor>(0)->dims());
25 26 27
  }
};

28
class SigmoidOpMaker : public OpProtoAndCheckerMaker {
29
public:
30 31
  SigmoidOpMaker(OpProto *proto, OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
32
    AddInput("X", "sigmoid input");
Q
qijun 已提交
33
    AddOutput("Y", "sigmoid output");
34 35 36 37
    AddComment("Sigmoid function");
  }
};

38
class SigmoidOpGrad : public OperatorWithKernel {
D
dongzhihong 已提交
39
protected:
40
  void InferShape(const InferShapeContext &ctx) const override {
D
dangqingqing 已提交
41 42
    // need to check input size 2 or 3, (dY, Y) or (dY, Y, X)
    PADDLE_ENFORCE(ctx.InputSize() == 2,
43 44 45 46
                   "Sigmoid Gradient Op only have one input");
    PADDLE_ENFORCE(ctx.OutputSize() == 1,
                   "Sigmoid Gradient Op only have one output");
    ctx.Output<Tensor>(0)->Resize(ctx.Input<Tensor>(0)->dims());
D
dongzhihong 已提交
47 48 49
  }
};

50 51 52
}  // namespace operators
}  // namespace paddle

53 54
REGISTER_OP(sigmoid, ops::SigmoidOp, ops::SigmoidOpMaker);
REGISTER_GRADIENT_OP(sigmoid, sigmoid_grad, ops::SigmoidOpGrad);
D
dongzhihong 已提交
55

56
REGISTER_OP_CPU_KERNEL(sigmoid, ops::SigmoidKernel<ops::CPUPlace, float>);
57 58
REGISTER_OP_CPU_KERNEL(sigmoid_grad,
                       ops::SigmoidGradKernel<ops::CPUPlace, float>);