grad_op_builder.h 1.9 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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 16 17 18 19 20 21 22 23
#pragma once

#include "paddle/framework/op_proto.pb.h"
#include "paddle/framework/operator.h"

namespace paddle {
namespace framework {
class OpRegistry;

F
fengjiayi 已提交
24 25 26
enum InOutType { IN, OUT };

struct OpInOutArg {
L
liaogang 已提交
27 28
  explicit OpInOutArg(const std::string& proto_name, const InOutType& type,
                      bool needed_in_grad, size_t begin_idx, size_t end_idx)
F
fengjiayi 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41
      : proto_name_(proto_name),
        type_(type),
        needed_in_grad_(needed_in_grad),
        begin_idx_(begin_idx),
        end_idx_(end_idx) {}

  std::string proto_name_;
  InOutType type_;
  bool needed_in_grad_;
  size_t begin_idx_;
  size_t end_idx_;
};

42
class GradOpBuilder {
F
fengjiayi 已提交
43 44
  using VarIndexMap = std::unordered_map<std::string, int>;

45
 public:
L
liaogang 已提交
46
  explicit GradOpBuilder(const OperatorBase& op) : op_(op) {}
47
  OperatorBase* Build();
48 49 50

 private:
  OpInOutArg* BuildArg(const VarProto& var, const VarIndexMap& var_map,
F
fengjiayi 已提交
51
                       const std::vector<int>& format, InOutType type);
52
  void BuildOpInOutArgList();
F
fengjiayi 已提交
53 54
  void AddArgIntoGradOp(const OpInOutArg* arg, std::vector<std::string>& in_out,
                        std::vector<int>& format, VarIndexMap* varmap, int& idx,
F
fengjiayi 已提交
55
                        bool is_grad) const;
56
  void CompleteGradOp(OperatorBase* grad_op) const;
Y
Yu Yang 已提交
57
  const OperatorBase& op_;
58
  std::vector<std::shared_ptr<OpInOutArg>> arg_list_;
F
fengjiayi 已提交
59
};
60 61 62

}  // namespace framework
}  // namespace paddle