add_op.cc 2.3 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

Q
qijun 已提交
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
Update  
Yi Wang 已提交
21
  DEFINE_OPERATOR_CTOR(AddOp, framework::OperatorWithKernel)
22
 protected:
D
dongzhihong 已提交
23
  void InferShape(const framework::InferShapeContext &ctx) const override {
Y
Yan Chunwei 已提交
24 25
    PADDLE_ENFORCE_EQ(ctx.InputSize(), 2);
    PADDLE_ENFORCE_EQ(ctx.OutputSize(), 1);
Y
Yan Chunwei 已提交
26
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar(0), "Inputs of AddOp must all be set");
27 28 29
    PADDLE_ENFORCE(ctx.OutputVar(0) != nullptr,
                   "Outputs of AddOp must all be set");
    PADDLE_ENFORCE(ctx.Input<Tensor>(0)->dims() == ctx.Input<Tensor>(1)->dims(),
Y
Yu Yang 已提交
30
                   "Two input of Add Op's dimension must be same.");
31
    ctx.Output<Tensor>(0)->Resize(ctx.Input<Tensor>(0)->dims());
Y
Yu Yang 已提交
32 33 34
  }
};

D
dongzhihong 已提交
35
class AddOpMaker : public framework::OpProtoAndCheckerMaker {
36
 public:
D
dongzhihong 已提交
37
  AddOpMaker(framework::OpProto *proto, framework::OpAttrChecker *op_checker)
38
      : OpProtoAndCheckerMaker(proto, op_checker) {
Y
Yu Yang 已提交
39 40 41 42 43 44 45 46 47 48
    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 已提交
49

D
dongzhihong 已提交
50
class AddOpGrad : public framework::OperatorWithKernel {
Y
Update  
Yi Wang 已提交
51
  DEFINE_OPERATOR_CTOR(AddOpGrad, framework::OperatorWithKernel)
52
 protected:
D
dongzhihong 已提交
53
  void InferShape(const framework::InferShapeContext &ctx) const override {}
D
dongzhihong 已提交
54 55
};

Q
qijun 已提交
56
}  // namespace operators
Y
Yu Yang 已提交
57 58
}  // namespace paddle

D
dongzhihong 已提交
59
namespace ops = paddle::operators;
60 61
REGISTER_OP(add_two, ops::AddOp, ops::AddOpMaker);
REGISTER_GRADIENT_OP(add_two, add_two_grad, ops::AddOpGrad);
D
dongzhihong 已提交
62

D
dongzhihong 已提交
63 64
REGISTER_OP_CPU_KERNEL(add_two,
                       ops::AddKernel<paddle::platform::CPUPlace, float>);