reduce_mean_op.cc 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

W
Wu Yi 已提交
15
#include "paddle/fluid/operators/reduce_ops/reduce_mean_op.h"
L
lvmengsi 已提交
16 17
#include <memory>
#include <string>
18
#include <utility>
L
lvmengsi 已提交
19
#include <vector>
20

21 22 23 24
#include "paddle/fluid/framework/infershape_utils.h"
#include "paddle/phi/core/infermeta_utils.h"
#include "paddle/phi/infermeta/unary.h"

L
lvmengsi 已提交
25 26 27 28 29 30 31
namespace paddle {
namespace operators {

// NOTE(dengkaipeng): Input(Out) is unnecessary in reduce_mean_grad
// calcualtion, but will incur a reduce_mean_grad op after
// reduce_mean_grad_grad, delete Input(Out) here.
// This change has no effect on reduce_mean_grad calculations.
H
hong 已提交
32 33
template <typename T>
class ReduceMeanOpGradMaker : public framework::SingleGradOpMaker<T> {
L
lvmengsi 已提交
34
 public:
H
hong 已提交
35
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;
L
lvmengsi 已提交
36 37

 protected:
38
  void Apply(GradOpPtr<T> op) const override {
L
lvmengsi 已提交
39
    op->SetType("reduce_mean_grad");
H
hong 已提交
40 41 42 43
    op->SetInput("X", this->Input("X"));
    op->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out"));
    op->SetAttrMap(this->Attrs());
    op->SetOutput(framework::GradVarName("X"), this->InputGrad("X"));
L
lvmengsi 已提交
44 45 46
  }
};

H
hong 已提交
47
class ReduceMeanDoubleGradDescMaker : public framework::GradOpDescMakerBase {
L
lvmengsi 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
 public:
  using framework::GradOpDescMakerBase::GradOpDescMakerBase;

  std::vector<std::unique_ptr<framework::OpDesc>> operator()() const override {
    std::vector<std::unique_ptr<framework::OpDesc>> ops;
    auto x_gg = OutputGrad(framework::GradVarName("X"));  // input ddx
    auto out_grads = InputGrad(framework::GradVarName("Out"));
    if (!out_grads.empty()) {
      auto* out_grad_op = new framework::OpDesc();
      out_grad_op->SetType("reduce_mean");
      out_grad_op->SetInput("X", x_gg);
      out_grad_op->SetAttrMap(Attrs());
      out_grad_op->SetOutput("Out", out_grads);
      ops.emplace_back(out_grad_op);
    }

    return ops;
  }
};
H
hong 已提交
67 68 69 70
class ReduceMeanDoubleGradOpBaseMaker : public imperative::GradOpBaseMakerBase {
 public:
  using imperative::GradOpBaseMakerBase::GradOpBaseMakerBase;

71
  std::shared_ptr<imperative::GradOpNode> operator()() const override {
H
hong 已提交
72 73
    auto out_grads = InputGrad(framework::GradVarName("Out"));
    if (!out_grads.empty()) {
74 75 76 77 78 79 80 81 82 83 84 85
      auto x_gg = OutputGrad(framework::GradVarName("X"));  // input ddx
      auto node = this->NewGradNode();
      {
        imperative::TracedGradOp op(node);
        op.SetType("reduce_mean");
        op.SetInput("X", x_gg);
        op.SetAttrMap(Attrs());
        op.SetOutput("Out", out_grads);
      }
      return node;
    } else {
      return nullptr;
H
hong 已提交
86 87 88
    }
  }
};
89
DECLARE_NO_NEED_BUFFER_VARS_INFERER(ReduceMeanGradNoNeedBufferVarInferer, "X");
L
lvmengsi 已提交
90 91 92 93 94 95 96 97 98
}  // namespace operators
}  // namespace paddle

class __reduce_meanMaker__ : public ops::ReduceOpMaker {
 protected:
  virtual std::string GetName() const { return "reduce_mean"; }
  virtual std::string GetOpType() const { return "Reduce reduce_mean"; }
};

99 100
DECLARE_INFER_SHAPE_FUNCTOR(reduce_mean, ReduceMeanInferShapeFunctor,
                            PD_INFER_META(phi::MeanRawInferMeta));
101

L
lvmengsi 已提交
102
REGISTER_OPERATOR(reduce_mean, ops::ReduceOp, __reduce_meanMaker__,
H
hong 已提交
103
                  ops::ReduceMeanOpGradMaker<paddle::framework::OpDesc>,
104 105
                  ops::ReduceMeanOpGradMaker<paddle::imperative::OpBase>,
                  ReduceMeanInferShapeFunctor);
L
lvmengsi 已提交
106
REGISTER_OPERATOR(reduce_mean_grad, ops::ReduceGradOp,
H
hong 已提交
107 108
                  ops::ReduceMeanDoubleGradDescMaker,
                  ops::ReduceMeanDoubleGradOpBaseMaker,
109
                  ops::ReduceMeanGradNoNeedBufferVarInferer);
110 111 112 113 114 115

template <typename T>
using CPUReduceMeanGradKernel =
    ops::ReduceGradKernel<paddle::platform::CPUDeviceContext, T,
                          ops::MeanGradFunctor, true>;

L
liuyuhui 已提交
116 117
REGISTER_OP_CPU_KERNEL(reduce_mean_grad, CPUReduceMeanGradKernel<bool>,
                       CPUReduceMeanGradKernel<float>,
118
                       CPUReduceMeanGradKernel<double>);