rowwise_add_op.cc 2.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/rowwise_add_op.h"
D
dongzhihong 已提交
16

17 18 19
namespace paddle {
namespace operators {

20
class RowwiseAddOp : public framework::OperatorWithKernel {
21
 protected:
D
dongzhihong 已提交
22
  void InferShape(const framework::InferShapeContext &ctx) const override {
23 24 25 26
    PADDLE_ENFORCE(ctx.InputSize() == 2UL,
                   "Two inputs is needed by rowwise add");
    auto dim0 = ctx.Input<Tensor>(0)->dims();
    auto dim1 = ctx.Input<Tensor>(1)->dims();
27 28 29 30

    PADDLE_ENFORCE(dim0.size() == 2, "Input 0 must be matrix");
    PADDLE_ENFORCE(dim1.size() == 1, "The second input must be vector");
    PADDLE_ENFORCE(dim0[1] == dim1[0], "The width of two input must be same");
31 32
    PADDLE_ENFORCE(ctx.OutputSize() == 1, "The output size must be 1");
    ctx.Output<Tensor>(0)->Resize(ctx.Input<Tensor>(0)->dims());
33 34 35
  }
};

36
class RowwiseAddOpMaker : public framework::OpProtoAndCheckerMaker {
37
 public:
D
dongzhihong 已提交
38 39
  RowWiseAddOpMaker(framework::OpProto *proto,
                    framework::OpAttrChecker *op_checker)
40
      : OpProtoAndCheckerMaker(proto, op_checker) {
41 42 43 44 45 46 47 48 49 50
    AddInput("X", "The left input of row-wise add op, must be matrix");
    AddInput("b", "The right input of row-wise add op, must be vector");
    AddOutput("Out", "The output of row-wise add op");
    AddComment(R"DOC(Row-wise Add operator

for i in xrange(X.shape[0]):
  Out = X[i] + b
)DOC");
  }
};
D
dongzhihong 已提交
51
class RowwiseAddGradOp : public OperatorWithKernel {
52
 protected:
D
dongzhihong 已提交
53 54
  void InferShape(const InferShapeContext &ctx) const override {
    PADDLE_ENFORCE(ctx.InputSize() == 4UL,
D
dongzhihong 已提交
55
                   "RowwiseAddGrad inputs is I, O, OG, size must be 4");
D
dongzhihong 已提交
56
    PADDLE_ENFORCE(ctx.OutputSize() == 2,
D
dongzhihong 已提交
57
                   "RowwiseAddGrad output is IG, size must be 2");
D
dongzhihong 已提交
58 59 60 61
    ctx.Output<Tensor>(0)->Resize(ctx.Input<Tensor>(0)->dims());
    ctx.Output<Tensor>(1)->Resize(ctx.Input<Tensor>(1)->dims());
  }
};
62 63 64 65

}  // namespace operators
}  // namespace paddle

D
dongzhihong 已提交
66
namespace ops = paddle::operators;
D
dongzhihong 已提交
67
REGISTER_OP(rowwise_add, ops::RowwiseAddOp, ops::RowwiseAddOpMaker);
68 69
REGISTER_OP_CPU_KERNEL(
    rowwise_add, ops::RowwiseAddKernel<paddle::platform::CPUPlace, float>);
D
dongzhihong 已提交
70

D
dongzhihong 已提交
71
REGISTER_GRADIENT_OP(rowwise_add, rowwise_add_grad, ops::RowwiseAddGradOp);
D
dongzhihong 已提交
72
REGISTER_OP_CPU_KERNEL(
73 74
    rowwise_add_grad,
    ops::RowwiseAddGradKernel<paddle::platform::CPUPlace, float>);