reduce_prod_op.cc 3.1 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_prod_op.h"
16 17 18
#include "paddle/fluid/prim/api/composite_backward/composite_backward_api.h"
#include "paddle/fluid/prim/utils/static/composite_grad_desc_maker.h"
#include "paddle/fluid/prim/utils/static/desc_tensor.h"
19

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

W
wanghuancoder 已提交
24 25 26 27 28 29 30 31 32
namespace paddle {
namespace framework {
class OpDesc;
}  // namespace framework
namespace imperative {
class OpBase;
}  // namespace imperative
}  // namespace paddle

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
namespace paddle {
namespace operators {
class ReduceProdCompositeGradOpMaker : public prim::CompositeGradOpMakerBase {
 public:
  using prim::CompositeGradOpMakerBase::CompositeGradOpMakerBase;
  void Apply() override {
    // get inputs
    paddle::Tensor x = this->GetSingleForwardInput("X");
    paddle::Tensor out = this->GetSingleForwardOutput("Out");
    paddle::Tensor out_grad = this->GetSingleOutputGrad("Out");

    // get attr
    std::vector<int> axis = this->Attr<std::vector<int>>("dim");
    bool keep_dim = this->Attr<bool>("keep_dim");
    bool reduce_all = this->Attr<bool>("reduce_all");

    // get output
    paddle::Tensor x_grad_t = this->GetSingleInputGrad("X");

    // get output ptr
    auto x_grad = this->GetOutputPtr(&x_grad_t);

    // get output orginal name
    std::string x_grad_name = this->GetOutputName(x_grad_t);
    VLOG(6) << "Runing prod_grad composite func";
    // call composite backward func
    prim::prod_grad<prim::DescTensor>(
        x, out, out_grad, axis, keep_dim, reduce_all, x_grad);
    // recover output name
    this->RecoverOutputName(x_grad_t, x_grad_name);
  }
};

}  // namespace operators
}  // namespace paddle

69 70
namespace ops = paddle::operators;

71
class ReduceProdOpMaker : public ops::ReduceBaseOpMaker {
72 73 74 75 76
 protected:
  virtual std::string GetName() const { return "reduce_prod"; }
  virtual std::string GetOpType() const { return "Reduce reduce_prod"; }
};

77 78 79 80
DECLARE_INFER_SHAPE_FUNCTOR(
    reduce_prod,
    ReduceProdInferShapeFunctor,
    PD_INFER_META(phi::ReduceIntArrayAxisInferMetaBase));
81

82
REGISTER_OPERATOR(
83
    reduce_prod,
84
    ops::ReduceBaseOp,
85
    ReduceProdOpMaker,
86 87
    paddle::framework::DefaultGradOpMaker<paddle::framework::OpDesc, true>,
    paddle::framework::DefaultGradOpMaker<paddle::imperative::OpBase, true>,
88
    ops::ReduceProdCompositeGradOpMaker,
89 90
    ReduceProdInferShapeFunctor);
REGISTER_OPERATOR(reduce_prod_grad, ops::ReduceGradOp);