increment_op.cc 3.8 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#include "paddle/fluid/operators/increment_op.h"
W
wanghuancoder 已提交
16

A
Abhinav Arora 已提交
17
#include <string>
A
Abhinav Arora 已提交
18

W
wanghuancoder 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32
namespace paddle {
namespace framework {
class InferShapeContext;
class OpDesc;
}  // namespace framework
namespace imperative {
class OpBase;
}  // namespace imperative
namespace platform {
class CPUDeviceContext;
struct CPUPlace;
}  // namespace platform
}  // namespace paddle

A
Abhinav Arora 已提交
33 34 35
namespace paddle {
namespace operators {

F
fengjiayi 已提交
36
class IncrementOp : public framework::OperatorWithKernel {
A
Abhinav Arora 已提交
37
 public:
F
fengjiayi 已提交
38 39 40 41 42 43
  IncrementOp(const std::string &type, const framework::VariableNameMap &inputs,
              const framework::VariableNameMap &outputs,
              const framework::AttributeMap &attrs)
      : OperatorWithKernel(type, inputs, outputs, attrs) {}

  void InferShape(framework::InferShapeContext *ctx) const override {
44 45 46 47 48 49 50
    PADDLE_ENFORCE_EQ(framework::product(ctx->GetInputDim("X")), 1UL,
                      platform::errors::InvalidArgument(
                          "The number of elements in Input(X) should be 1."
                          "Now the number is %d.",
                          framework::product(ctx->GetInputDim("X"))));
    OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "increment");
    OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "increment");
A
Abhinav Arora 已提交
51
    ctx->SetOutputDim("Out", ctx->GetInputDim("X"));
F
fengjiayi 已提交
52
    ctx->ShareLoD("X", "Out");
A
Abhinav Arora 已提交
53
  }
54 55 56 57 58 59 60 61 62

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext &ctx) const override {
    framework::OpKernelType kt = OperatorWithKernel::GetExpectedKernelType(ctx);
    // IncrementOp kernel's device type is decided by input tensor place
    kt.place_ = ctx.Input<framework::LoDTensor>("X")->place();
    return kt;
  }
A
Abhinav Arora 已提交
63 64 65 66
};

class IncrementOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
67
  void Make() override {
A
Abhinav Arora 已提交
68 69
    AddInput("X", "(Tensor) The input tensor of increment operator");
    AddOutput("Out", "(Tensor) The output tensor of increment operator.");
Y
Yu Yang 已提交
70 71 72 73
    AddAttr<float>("step",
                   "(float, default 1.0) "
                   "The step size by which the "
                   "input tensor will be incremented.")
A
Abhinav Arora 已提交
74
        .SetDefault(1.0);
K
kexinzhao 已提交
75 76 77 78 79 80 81
    AddComment(R"DOC(
Increment Operator.

The equation is: 
$$Out = X + step$$

)DOC");
A
Abhinav Arora 已提交
82 83 84
  }
};

H
hong 已提交
85 86
template <typename T>
class IncrementGradOpMaker : public framework::SingleGradOpMaker<T> {
A
Abhinav Arora 已提交
87
 public:
H
hong 已提交
88
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;
A
Abhinav Arora 已提交
89

90
  void Apply(GradOpPtr<T> grad_op) const override {
Y
Yang Yu 已提交
91
    grad_op->SetType("increment");
H
hong 已提交
92 93
    grad_op->SetInput("X", this->Output("Out"));
    grad_op->SetOutput("Out", this->Input("X"));
94
    grad_op->SetAttr("step", -BOOST_GET_CONST(float, this->GetAttr("step")));
A
Abhinav Arora 已提交
95 96 97 98 99 100 101
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
F
fengjiayi 已提交
102
REGISTER_OPERATOR(increment, ops::IncrementOp, ops::IncrementOpMaker,
H
hong 已提交
103 104
                  ops::IncrementGradOpMaker<paddle::framework::OpDesc>,
                  ops::IncrementGradOpMaker<paddle::imperative::OpBase>);
F
fengjiayi 已提交
105 106 107 108
REGISTER_OP_CPU_KERNEL(
    increment, ops::IncrementKernel<paddle::platform::CPUDeviceContext, float>,
    ops::IncrementKernel<paddle::platform::CPUDeviceContext, double>,
    ops::IncrementKernel<paddle::platform::CPUDeviceContext, int>,
109
    ops::IncrementKernel<paddle::platform::CPUDeviceContext, int64_t>);