minus_op.cc 3.4 KB
Newer Older
Y
Yu Yang 已提交
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

L
Luo Tao 已提交
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
Y
Yu Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yu Yang 已提交
8

L
Luo Tao 已提交
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. */
Y
Yu Yang 已提交
14

Y
Yi Wang 已提交
15 16
#include "paddle/fluid/operators/minus_op.h"
#include "paddle/fluid/operators/net_op.h"
Y
Yu Yang 已提交
17 18 19 20 21 22

namespace paddle {
namespace operators {

class MinusOp : public framework::OperatorWithKernel {
 public:
23 24 25
  MinusOp(const std::string &type, const framework::VariableNameMap &inputs,
          const framework::VariableNameMap &outputs,
          const framework::AttributeMap &attrs)
Y
Yu Yang 已提交
26 27
      : OperatorWithKernel(type, inputs, outputs, attrs) {}

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

Q
Qiao Longfei 已提交
36 37
    auto x_dims = ctx->GetInputDim("X");
    auto y_dims = ctx->GetInputDim("Y");
Y
Yu Yang 已提交
38 39

    PADDLE_ENFORCE_EQ(
Q
Qiao Longfei 已提交
40
        x_dims, y_dims,
Y
Yu Yang 已提交
41
        "Minus operator must take two tensor with same num of elements");
Q
Qiao Longfei 已提交
42 43
    ctx->SetOutputDim("Out", x_dims);
    ctx->ShareLoD("X", /*->*/ "Out");
Y
Yu Yang 已提交
44 45 46 47 48
  }
};

class MinusOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
49
  MinusOpMaker(OpProto *proto, OpAttrChecker *op_checker)
Y
Yu Yang 已提交
50
      : OpProtoAndCheckerMaker(proto, op_checker) {
51 52 53
    AddInput("X", "The left tensor of minus operator.");
    AddInput("Y", "The right tensor of minus operator.");
    AddOutput("Out", "The output tensor of minus operator.");
Y
Yu Yang 已提交
54

K
kexinzhao 已提交
55 56
    AddComment(R"DOC(
Minus Operator.
Y
Yu Yang 已提交
57

58 59
Equation:

K
kexinzhao 已提交
60
    $Out = X - Y$
61 62

Both the input `X` and `Y` can carry the LoD (Level of Details) information,
K
kexinzhao 已提交
63 64
or not. But the output only shares the LoD information with input `X`.

Y
Yu Yang 已提交
65 66 67
)DOC");
  }
};
68 69

class MinusGradMaker : public framework::GradOpDescMakerBase {
Y
Yu Yang 已提交
70
 public:
71 72
  using framework::GradOpDescMakerBase::GradOpDescMakerBase;

Y
Yu Yang 已提交
73 74
  std::vector<std::unique_ptr<framework::OpDesc>> operator()() const override {
    std::vector<std::unique_ptr<framework::OpDesc>> ops;
Y
Yu Yang 已提交
75 76
    auto x_g = InputGrad("X");
    if (!x_g.empty()) {
Y
Yu Yang 已提交
77
      auto *x_g_op = new framework::OpDesc();
Y
Yu Yang 已提交
78 79 80 81 82 83 84 85 86
      x_g_op->SetType("scale");
      x_g_op->SetInput("X", OutputGrad("Out"));
      x_g_op->SetOutput("Out", x_g);
      x_g_op->SetAttr("scale", 1.0f);
      ops.emplace_back(x_g_op);
    }

    auto y_g = InputGrad("Y");
    if (!y_g.empty()) {
Y
Yu Yang 已提交
87
      auto *y_g_op = new framework::OpDesc();
Y
Yu Yang 已提交
88 89 90 91 92 93 94
      y_g_op->SetType("scale");
      y_g_op->SetInput("X", OutputGrad("Out"));
      y_g_op->SetOutput("Out", y_g);
      y_g_op->SetAttr("scale", -1.0f);
      ops.emplace_back(y_g_op);
    }

95
    return ops;
Y
Yu Yang 已提交
96 97 98 99 100 101 102
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
103
REGISTER_OPERATOR(minus, ops::MinusOp, ops::MinusOpMaker, ops::MinusGradMaker);
Q
QI JUN 已提交
104 105
REGISTER_OP_CPU_KERNEL(
    minus, ops::MinusKernel<paddle::platform::CPUDeviceContext, float>);