You need to sign in or sign up before continuing.
cumsum_op.cc 4.0 KB
Newer Older
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
E
emailweixu 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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/fluid/framework/op_version_registry.h"
Y
Yi Wang 已提交
16
#include "paddle/fluid/operators/cum_op.h"
E
emailweixu 已提交
17 18 19 20 21 22 23 24 25

namespace paddle {
namespace operators {

class CumOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

  void InferShape(framework::InferShapeContext *ctx) const override {
26 27 28 29 30 31 32 33
    if (ctx->Attrs().Get<bool>("flatten")) {
      ctx->SetOutputDim(
          "Out",
          framework::make_ddim({framework::product(ctx->GetInputDim("X"))}));
    } else {
      ctx->SetOutputDim("Out", ctx->GetInputDim("X"));
    }

E
emailweixu 已提交
34 35 36 37 38 39
    ctx->ShareLoD("X", /*->*/ "Out");
  }
};

class CumsumOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
40
  void Make() override {
Y
yuyang18 已提交
41 42
    AddInput("X", "Input of cumsum operator");
    AddOutput("Out", "Output of cumsum operator");
E
emailweixu 已提交
43
    AddAttr<int>("axis",
T
tianshuo78520a 已提交
44 45
                 "The dimension to accumulate along. -1 means the last "
                 "dimension [default -1].")
46 47 48 49 50
        .SetDefault(-1);
    AddAttr<bool>("flatten",
                  "Whether to compute the cumsum over the flattened array. "
                  "[default false].")
        .SetDefault(false);
E
emailweixu 已提交
51
    AddAttr<bool>("exclusive",
Y
yuyang18 已提交
52
                  "Whether to perform exclusive cumsum. [default false].")
E
emailweixu 已提交
53 54
        .SetDefault(false);
    AddAttr<bool>("reverse",
Y
yuyang18 已提交
55 56
                  "If true, the cumsum is performed in the reversed direction. "
                  "[default false].")
E
emailweixu 已提交
57 58 59 60 61 62 63 64 65
        .SetDefault(false);
    AddComment(R"DOC(
The cumulative sum of the elements along a given axis.
By default, the first element of the result is the same of the first element of
the input. If exlusive is true, the first element of the result is 0.
)DOC");
  }
};

H
hong 已提交
66 67
template <typename T>
class CumsumGradMaker : public framework::SingleGradOpMaker<T> {
E
emailweixu 已提交
68
 public:
H
hong 已提交
69
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;
E
emailweixu 已提交
70 71

 protected:
72
  void Apply(GradOpPtr<T> grad_op) const override {
E
emailweixu 已提交
73
    grad_op->SetType("cumsum");
H
hong 已提交
74 75
    grad_op->SetInput("X", this->OutputGrad("Out"));
    grad_op->SetOutput("Out", this->InputGrad("X"));
76
    grad_op->SetAttr("axis", BOOST_GET_CONST(int, this->GetAttr("axis")));
77 78
    grad_op->SetAttr("flatten",
                     BOOST_GET_CONST(bool, this->GetAttr("flatten")));
79 80 81 82
    grad_op->SetAttr("reverse",
                     !BOOST_GET_CONST(bool, this->GetAttr("reverse")));
    grad_op->SetAttr("exclusive",
                     BOOST_GET_CONST(bool, this->GetAttr("exclusive")));
E
emailweixu 已提交
83 84 85 86 87 88 89 90 91
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
using CPU = paddle::platform::CPUDeviceContext;

H
hong 已提交
92 93 94
REGISTER_OPERATOR(cumsum, ops::CumOp, ops::CumsumOpMaker,
                  ops::CumsumGradMaker<paddle::framework::OpDesc>,
                  ops::CumsumGradMaker<paddle::imperative::OpBase>);
E
emailweixu 已提交
95 96
REGISTER_OP_CPU_KERNEL(cumsum, ops::CumKernel<CPU, ops::CumsumFunctor<float>>,
                       ops::CumKernel<CPU, ops::CumsumFunctor<double>>,
97 98
                       ops::CumKernel<CPU, ops::CumsumFunctor<int>>,
                       ops::CumKernel<CPU, ops::CumsumFunctor<int64_t>>);
99 100 101 102 103 104 105 106 107 108 109

REGISTER_OP_VERSION(cumsum)
    .AddCheckpoint(
        R"ROC(
      Upgrade cumsum add a new attribute [flatten].
    )ROC",
        paddle::framework::compatible::OpVersionDesc().NewAttr(
            "flatten",
            "In order to compute the cumsum over the flattened array when the "
            "argument `axis` in python API is None.",
            false));