reduce_max_op.cc 2.7 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.

15
#include "paddle/fluid/framework/infershape_utils.h"
16
#include "paddle/fluid/operators/reduce_ops/reduce_min_max_op.h"
17 18 19
#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"
20 21 22 23 24 25 26 27 28 29 30
#include "paddle/phi/core/infermeta_utils.h"
#include "paddle/phi/infermeta/unary.h"

namespace ops = paddle::operators;

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

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
namespace paddle {
namespace operators {

class ReduceMaxCompositeGradOpMaker : public prim::CompositeGradOpMakerBase {
 public:
  using prim::CompositeGradOpMakerBase::CompositeGradOpMakerBase;
  void Apply() override {
    paddle::Tensor x = this->GetSingleForwardInput("X");
    paddle::Tensor out = this->GetSingleForwardOutput("Out");
    paddle::Tensor out_grad = this->GetSingleOutputGrad("Out");
    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");
    paddle::Tensor x_grad_t = this->GetSingleInputGrad("X");
    paddle::Tensor* x_grad = this->GetOutputPtr(&x_grad_t);
    std::string x_grad_name = this->GetOutputName(x_grad_t);
    VLOG(6) << "Runing max_grad composite func";
    prim::max_grad<prim::DescTensor>(
        x, out, out_grad, axis, keep_dim, reduce_all, x_grad);
    this->RecoverOutputName(x_grad_t, x_grad_name);
  }
};

}  // namespace operators
}  // namespace paddle

57 58 59 60
DECLARE_INFER_SHAPE_FUNCTOR(
    reduce_max,
    ReduceMaxInferShapeFunctor,
    PD_INFER_META(phi::ReduceIntArrayAxisInferMetaBase));
61 62

REGISTER_OPERATOR(
63 64 65
    reduce_max,
    ops::ReduceOp,
    ReduceMaxOpMaker,
66 67
    paddle::framework::DefaultGradOpMaker<paddle::framework::OpDesc, true>,
    paddle::framework::DefaultGradOpMaker<paddle::imperative::OpBase, true>,
68
    ops::ReduceMaxCompositeGradOpMaker,
69 70
    ReduceMaxInferShapeFunctor);
REGISTER_OPERATOR(reduce_max_grad, ops::ReduceGradOp)
新手
引导
客服 返回
顶部