rowwise_add_op.cc 3.9 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 {

D
dongzhihong 已提交
20 21
using framework::Tensor;

22
class RowwiseAddOp : public framework::OperatorWithKernel {
Y
Yu Yang 已提交
23 24 25
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

26
 protected:
Q
Qiao Longfei 已提交
27 28 29 30 31 32 33 34 35 36
  void InferShape(framework::InferShapeContextBase* ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("X"),
                   "Input(X) of RowwiseAddOp should not be null.");
    PADDLE_ENFORCE(ctx->HasInput("b"),
                   "Input(b) of RowwiseAddOp should not be null.");
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   "Output(Out) of RowwiseAddOp should not be null.");

    auto x_dims = ctx->GetInputDim("X");
    auto b_dims = ctx->GetInputDim("b");
F
fengjiayi 已提交
37 38 39 40
    PADDLE_ENFORCE_GT(
        x_dims.size(), b_dims.size(),
        "The rank of input `X` must be larger than the one of input `b`.");

F
fengjiayi 已提交
41
    int num_col_dims = x_dims.size() - b_dims.size();
F
fengjiayi 已提交
42

F
fengjiayi 已提交
43 44 45
    PADDLE_ENFORCE_EQ(
        framework::slice_ddim(x_dims, num_col_dims, x_dims.size()), b_dims,
        "The width of two operands must be same");
Q
Qiao Longfei 已提交
46 47 48 49
    PADDLE_ENFORCE_EQ(ctx->Outputs("Out").size(), 1,
                      "The output size must be 1");
    ctx->SetOutputDim("Out", x_dims);
    ctx->ShareLoD("X", /*->*/ "Out");
50 51 52
  }
};

53
class RowwiseAddOpMaker : public framework::OpProtoAndCheckerMaker {
54
 public:
Q
Qiao Longfei 已提交
55 56
  RowwiseAddOpMaker(framework::OpProto* proto,
                    framework::OpAttrChecker* op_checker)
57
      : OpProtoAndCheckerMaker(proto, op_checker) {
58 59 60 61 62 63 64 65 66 67
    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 已提交
68
class RowwiseAddGradOp : public framework::OperatorWithKernel {
D
dongzhihong 已提交
69 70 71
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

72
 protected:
Q
Qiao Longfei 已提交
73 74 75 76 77 78 79
  void InferShape(framework::InferShapeContextBase* ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("X"), "X should not be null");
    PADDLE_ENFORCE(ctx->HasInput("b"), "b should not be null");
    PADDLE_ENFORCE(ctx->HasInput(framework::GradVarName("Out")),
                   "Input(Out@GRAD) should not be null");
    auto x_dims = ctx->GetInputDim("X");
    auto b_dims = ctx->GetInputDim("b");
F
fengjiayi 已提交
80 81 82 83
    PADDLE_ENFORCE_GT(
        x_dims.size(), b_dims.size(),
        "The rank of input `X` must be larger than the one of input `b`.");

Q
Qiao Longfei 已提交
84
    int64_t num_col_dims = x_dims.size() - b_dims.size();
F
fengjiayi 已提交
85 86 87
    PADDLE_ENFORCE_EQ(
        framework::slice_ddim(x_dims, num_col_dims, x_dims.size()), b_dims,
        "The width of two operands must be same");
Q
Qiao Longfei 已提交
88 89 90 91 92 93 94 95
    auto x_grad_name = framework::GradVarName("X");
    auto b_grad_name = framework::GradVarName("b");
    if (ctx->HasOutput(x_grad_name)) {
      ctx->SetOutputDim(x_grad_name, x_dims);
    }
    if (ctx->HasOutput(b_grad_name)) {
      ctx->SetOutputDim(b_grad_name, b_dims);
    }
D
dongzhihong 已提交
96 97
  }
};
98 99 100 101

}  // namespace operators
}  // namespace paddle

D
dongzhihong 已提交
102
namespace ops = paddle::operators;
103
REGISTER_OP(rowwise_add, ops::RowwiseAddOp, ops::RowwiseAddOpMaker,
104
            rowwise_add_grad, ops::RowwiseAddGradOp);
105 106
REGISTER_OP_CPU_KERNEL(
    rowwise_add, ops::RowwiseAddKernel<paddle::platform::CPUPlace, float>);
D
dongzhihong 已提交
107
REGISTER_OP_CPU_KERNEL(
108 109
    rowwise_add_grad,
    ops::RowwiseAddGradKernel<paddle::platform::CPUPlace, float>);