sigmoid_op.cc 1.8 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 {
39
 protected:
40
  void InferShape(const InferShapeContext &ctx) const override {}
D
dongzhihong 已提交
41 42 43 44 45 46
  std::string DebugString() const override {
    LOG(INFO) << "SigmoidGrad";
    return "";
  }
};

47 48 49
}  // namespace operators
}  // namespace paddle

50 51
REGISTER_OP(sigmoid, ops::SigmoidOp, ops::SigmoidOpMaker);
REGISTER_GRADIENT_OP(sigmoid, sigmoid_grad, ops::SigmoidOpGrad);
D
dongzhihong 已提交
52

53
REGISTER_OP_CPU_KERNEL(sigmoid, ops::SigmoidKernel<ops::CPUPlace, float>);