add_op.cc 2.2 KB
Newer Older
L
liaogang 已提交
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

Q
qijun 已提交
3 4 5
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
L
liaogang 已提交
6

Q
qijun 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
L
liaogang 已提交
8

Q
qijun 已提交
9 10 11 12 13
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. */
L
liaogang 已提交
14

15
#include "paddle/operators/add_op.h"
Y
Yu Yang 已提交
16 17

namespace paddle {
Y
Yu Yang 已提交
18
namespace operators {
Y
Yu Yang 已提交
19

D
dongzhihong 已提交
20
class AddOp : public framework::OperatorWithKernel {
Y
Yu Yang 已提交
21 22
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;
23

24
 protected:
Q
Qiao Longfei 已提交
25 26 27 28 29
  void InferShape(framework::InferShapeContextBase* ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("X"), "Input(X) of AddOp should not be null.");
    PADDLE_ENFORCE(ctx->HasInput("Y"), "Input(Y) of AddOp should not be null.");
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   "Output(Out) of AddOp should not be null.");
30

Q
Qiao Longfei 已提交
31 32 33
    auto x_dims = ctx->GetInputDim("X");
    auto y_dims = ctx->GetInputDim("Y");
    PADDLE_ENFORCE_EQ(x_dims, y_dims,
Y
Yu Yang 已提交
34
                      "Two input of Add Op's dimension must be same.");
Q
Qiao Longfei 已提交
35
    ctx->SetOutputDim("Out", x_dims);
Y
Yu Yang 已提交
36 37 38
  }
};

D
dongzhihong 已提交
39
class AddOpMaker : public framework::OpProtoAndCheckerMaker {
40
 public:
Q
Qiao Longfei 已提交
41
  AddOpMaker(framework::OpProto* proto, framework::OpAttrChecker* op_checker)
42
      : OpProtoAndCheckerMaker(proto, op_checker) {
Y
Yu Yang 已提交
43 44 45 46 47 48 49 50 51 52
    AddInput("X", "The first input of add op");
    AddInput("Y", "The second input of add op");
    AddOutput("Out", "The output of add op");
    AddComment(R"DOC(
Two Element Add Operator.

The equation is: Out = X + Y
)DOC");
  }
};
D
dongzhihong 已提交
53

D
dongzhihong 已提交
54
class AddOpGrad : public framework::OperatorWithKernel {
Y
Yu Yang 已提交
55 56 57
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

58
 protected:
Q
Qiao Longfei 已提交
59
  void InferShape(framework::InferShapeContextBase* ctx) const override {}
D
dongzhihong 已提交
60 61
};

Q
qijun 已提交
62
}  // namespace operators
Y
Yu Yang 已提交
63 64
}  // namespace paddle

D
dongzhihong 已提交
65
namespace ops = paddle::operators;
66
REGISTER_OP(add, ops::AddOp, ops::AddOpMaker, add_grad, ops::AddOpGrad);
D
dongzhihong 已提交
67

68
REGISTER_OP_CPU_KERNEL(add, ops::AddKernel<paddle::platform::CPUPlace, float>);