grad_op_desc_maker.h 5.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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. */

#pragma once
16 17
#include <string>
#include <unordered_set>
Y
Yu Yang 已提交
18
#include <vector>
19 20 21 22 23 24 25 26
#include "paddle/framework/op_desc.h"
#include "paddle/framework/operator.h"

namespace paddle {
namespace framework {

class GradOpDescMakerBase {
 public:
27
  explicit GradOpDescMakerBase(
Y
Yu Yang 已提交
28
      const OpDesc& fwd_op, const std::unordered_set<std::string>& no_grad_set,
Y
Yu Yang 已提交
29
      std::unordered_map<std::string, std::string>* grad_to_var,
Y
Yu Yang 已提交
30
      const std::vector<BlockDesc*>& grad_block = std::vector<BlockDesc*>())
Y
Yu Yang 已提交
31 32 33 34
      : fwd_op_(fwd_op),
        no_grad_set_(no_grad_set),
        grad_to_var_(grad_to_var),
        grad_block_(grad_block) {}
35 36

  virtual ~GradOpDescMakerBase() = default;
Y
Yu Yang 已提交
37
  virtual std::vector<std::unique_ptr<OpDesc>> operator()() const = 0;
38 39

 protected:
40 41
  std::vector<std::string> InputGrad(const std::string& name,
                                     bool drop_empty_grad = true) const {
42
    std::vector<std::string> ret_val;
43
    auto var_names = this->Input(name);
44
    ret_val.reserve(var_names.size());
45 46 47 48 49 50 51 52 53 54 55
    std::transform(var_names.begin(), var_names.end(),
                   std::back_inserter(ret_val),
                   [this](const std::string& fwd_var_name) -> std::string {
                     auto g_name = GradVarName(fwd_var_name);
                     if (no_grad_set_.count(g_name)) {
                       return kEmptyVarName;
                     } else {
                       (*this->grad_to_var_)[g_name] = fwd_var_name;
                       return g_name;
                     }
                   });
56 57 58 59 60 61 62 63 64
    if (!drop_empty_grad) {
      return ret_val;
    }
    std::vector<std::string> dropped_ret_val;
    dropped_ret_val.reserve(ret_val.size());
    std::copy_if(ret_val.begin(), ret_val.end(),
                 std::back_inserter(dropped_ret_val),
                 [](const std::string& str) { return str != kEmptyVarName; });
    return dropped_ret_val;
65 66 67
  }

  std::vector<std::string> OutputGrad(const std::string& name) const {
68 69 70 71 72 73
    std::vector<std::string> ret_val;
    auto onames = this->Output(name);
    ret_val.reserve(onames.size());
    std::transform(onames.begin(), onames.end(), std::back_inserter(ret_val),
                   GradVarName);
    return ret_val;
74 75
  }

Y
Yu Yang 已提交
76 77
  std::vector<std::string> InputNames() const {
    return this->fwd_op_.InputNames();
78 79
  }

Y
Yu Yang 已提交
80 81
  std::vector<std::string> OutputNames() const {
    return this->fwd_op_.OutputNames();
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  }

  std::vector<std::string> Input(const std::string& name) const {
    return fwd_op_.Input(name);
  }

  std::vector<std::string> Output(const std::string& name) const {
    return fwd_op_.Output(name);
  }

  const std::unordered_map<std::string, Attribute>& Attrs() const {
    return fwd_op_.GetAttrMap();
  }

  const Attribute& GetAttr(const std::string& name) const {
    auto& map = fwd_op_.GetAttrMap();
    auto it = map.find(name);
    PADDLE_ENFORCE(it != map.end(), "Cannot find attribute %s", name);
    return it->second;
  }

  std::string ForwardOpType() const { return this->fwd_op_.Type(); }

 private:
Y
Yu Yang 已提交
106
  const OpDesc& fwd_op_;
107
  const std::unordered_set<std::string>& no_grad_set_;
108
  std::unordered_map<std::string, std::string>* grad_to_var_;
Y
Yu Yang 已提交
109 110

 protected:
Y
Yu Yang 已提交
111
  std::vector<BlockDesc*> grad_block_;
112 113 114 115
};

class SingleGradOpDescMaker : public GradOpDescMakerBase {
 public:
Y
Yu Yang 已提交
116 117
  using GradOpDescMakerBase::GradOpDescMakerBase;

Y
Yu Yang 已提交
118 119
  std::vector<std::unique_ptr<OpDesc>> operator()() const {
    std::vector<std::unique_ptr<OpDesc>> retv;
Y
Yu Yang 已提交
120 121 122
    retv.emplace_back(this->Apply());
    return retv;
  }
123 124

 protected:
Y
Yu Yang 已提交
125
  virtual std::unique_ptr<OpDesc> Apply() const = 0;
126 127
};

128
template <bool DropEmptyIG = true>
129
class DefaultGradOpDescMaker : public SingleGradOpDescMaker {
Y
Yu Yang 已提交
130 131 132
 public:
  using SingleGradOpDescMaker::SingleGradOpDescMaker;

133
 protected:
Y
Yu Yang 已提交
134 135
  virtual std::unique_ptr<OpDesc> Apply() const {
    auto* grad = new OpDesc();
Y
Yu Yang 已提交
136
    grad->SetType(this->GradOpType());
137

Y
Yu Yang 已提交
138
    for (auto& input_param : this->InputNames()) {
Y
Yu Yang 已提交
139
      grad->SetInput(input_param, this->Input(input_param));
140 141
      grad->SetOutput(GradVarName(input_param),
                      this->InputGrad(input_param, DropEmptyIG));
142 143
    }

Y
Yu Yang 已提交
144
    for (auto& output_param : this->OutputNames()) {
Y
Yu Yang 已提交
145 146
      grad->SetInput(output_param, this->Output(output_param));
      grad->SetInput(GradVarName(output_param), this->OutputGrad(output_param));
147 148
    }

Y
Yu Yang 已提交
149
    grad->SetAttrMap(this->Attrs());
150

Y
Yu Yang 已提交
151
    return std::unique_ptr<OpDesc>(grad);
152 153 154 155 156 157 158
  }

  virtual std::string GradOpType() const {
    return this->ForwardOpType() + "_grad";
  }
};

Y
Yu Yang 已提交
159 160 161
class EmptyGradOpMaker : public GradOpDescMakerBase {
 public:
  using GradOpDescMakerBase::GradOpDescMakerBase;
Y
Yu Yang 已提交
162
  std::vector<std::unique_ptr<OpDesc>> operator()() const override {
Y
Yu Yang 已提交
163 164 165 166
    return {};
  }
};

167 168
}  // namespace framework
}  // namespace paddle