layer.cc 5.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// 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.

#include "paddle/fluid/imperative/layer.h"
#include <deque>
#include <limits>
#include <map>
#include <random>
#include <utility>

#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/op_registry.h"
24
#include "paddle/fluid/framework/operator.h"
25 26 27 28 29 30 31 32 33 34
#include "paddle/fluid/string/printf.h"

namespace paddle {
namespace imperative {

using framework::Variable;

void AddTo(Variable* src, Variable* dst) {
  framework::LoDTensor* dst_tensor = dst->GetMutable<framework::LoDTensor>();
  framework::LoDTensor* src_tensor = src->GetMutable<framework::LoDTensor>();
35 36 37
  PADDLE_ENFORCE(dst_tensor->numel() == src_tensor->numel(),
                 "dst_numel %lld vs. src_numel %lld", dst_tensor->numel(),
                 src_tensor->numel());
38 39 40 41 42 43 44 45 46
  float* dst_data = dst_tensor->mutable_data<float>(platform::CPUPlace());
  const float* src_data = src_tensor->data<float>();
  for (size_t i = 0; i < src_tensor->numel(); ++i) {
    dst_data[i] += src_data[i];
  }
}

class Autograd {
 public:
X
Xin Pan 已提交
47
  Autograd() {}
48 49

  void RunBackward(VarBase* var) {
50 51 52
    if (var->stop_gradient_) {
      return;
    }
53 54 55 56 57 58 59 60 61

    std::deque<OpBase*> ready;
    ready.push_back(var->pre_op_);

    std::map<OpBase*, int> dep_counts = ComputeDepCounts(var->pre_op_);

    while (!ready.empty()) {
      OpBase* ready_op = ready.front();
      ready.pop_front();
X
Xin Pan 已提交
62 63 64 65 66 67 68
      std::map<std::string, std::vector<VarBase*>> input_grads =
          ready_op->ApplyGrad();

      for (auto it : input_grads) {
        const std::vector<VarBase*>& ingrads = it.second;
        for (size_t i = 0; i < ingrads.size(); ++i) {
          if (!ingrads[i]) continue;
69 70 71
          if (ready_op->input_vars_[it.first][i]->stop_gradient_) {
            continue;
          }
X
Xin Pan 已提交
72
          OpBase* pre_op = ready_op->pre_ops_[it.first][i];
X
Xin Pan 已提交
73 74 75 76 77 78 79 80
          if (!pre_op) continue;

          dep_counts[pre_op] -= 1;
          PADDLE_ENFORCE(dep_counts[pre_op] >= 0);
          bool pre_op_ready = dep_counts[pre_op] == 0;
          if (pre_op_ready) {
            ready.push_back(pre_op);
          }
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
        }
      }
    }
  }

 private:
  std::map<OpBase*, int> ComputeDepCounts(OpBase* op) {
    std::map<OpBase*, int> ret;

    std::deque<OpBase*> queue;
    queue.push_back(op);
    std::unordered_set<OpBase*> visited;
    visited.insert(op);
    while (!queue.empty()) {
      OpBase* candidate = queue.front();
      queue.pop_front();
X
Xin Pan 已提交
97
      for (auto it : candidate->pre_ops_) {
X
Xin Pan 已提交
98 99 100 101 102 103 104
        for (OpBase* pre_op : it.second) {
          if (!pre_op) continue;
          if (visited.find(pre_op) == visited.end()) {
            visited.insert(pre_op);
            queue.push_back(pre_op);
          }
          ret[pre_op] += 1;
105 106 107 108 109 110 111 112 113 114 115 116
        }
      }
    }
    return ret;
  }
};

framework::LoDTensor& VarBase::Grad() {
  VLOG(3) << "get var grad " << var_desc_->Name();
  return *grads_->GetMutable<framework::LoDTensor>();
}

X
Xin Pan 已提交
117 118
std::map<std::string, std::vector<VarBase*>> OpBase::ApplyGrad() {
  if (!grad_op_desc_) {
119
    LOG(WARNING) << "op with no grad: " << op_desc_->Type();
X
Xin Pan 已提交
120
    return {};
121 122 123
  }
  VLOG(3) << "op grad " << grad_op_desc_->Type();

X
Xin Pan 已提交
124
  std::vector<std::unique_ptr<framework::Variable>> tmp_vars;
X
Xin Pan 已提交
125 126 127 128
  std::map<std::string, std::vector<framework::Variable*>> grad_outputs;
  for (auto it : grad_output_vars_) {
    auto& outputs = grad_outputs[it.first];
    for (size_t i = 0; i < it.second.size(); ++i) {
129 130 131 132 133 134
      // Allocate a new variable
      Variable* tmp_var = new framework::Variable();
      tmp_var->GetMutable<framework::LoDTensor>();

      tmp_vars.emplace_back(tmp_var);
      outputs.push_back(tmp_var);
135 136 137
    }
  }

X
Xin Pan 已提交
138
  framework::RuntimeContext ctx(grad_input_vars_, grad_outputs);
139

140
  // No need to do compile time infer shape here.
X
Xin Pan 已提交
141
  // grad_op_desc_->InferShape(*block_);
142
  grad_op_desc_->InferVarType(block_);
X
Xin Pan 已提交
143

144 145
  std::unique_ptr<framework::OperatorBase> opbase =
      framework::OpRegistry::CreateOp(*grad_op_desc_);
X
Xin Pan 已提交
146 147 148 149 150 151 152 153 154
  framework::OperatorWithKernel* op_kernel =
      dynamic_cast<framework::OperatorWithKernel*>(opbase.get());
  PADDLE_ENFORCE_NOT_NULL(op_kernel, "only support op with kernel");

  framework::Scope scope;
  platform::CPUPlace place;
  PreparedOp p = PreparedOp::Prepare(ctx, *op_kernel, place);
  p.op.RuntimeInferShape(scope, place, ctx);
  p.func(framework::ExecutionContext(p.op, scope, *p.dev_ctx, p.ctx));
X
Xin Pan 已提交
155 156 157 158

  for (auto it : grad_output_vars_) {
    auto& outputs = grad_outputs[it.first];
    auto& origin_outputs = it.second;
159 160 161

    auto& forward_inputs = input_vars_[framework::OriginVarName(it.first)];

X
Xin Pan 已提交
162
    for (size_t i = 0; i < outputs.size(); ++i) {
163 164 165 166
      if (!forward_inputs[i]->stop_gradient_) {
        framework::Variable* orig_grad = origin_outputs[i];
        AddTo(outputs[i], orig_grad);
      }
167 168
    }
  }
X
Xin Pan 已提交
169
  return input_vars_;
170 171
}

X
Xin Pan 已提交
172
void VarBase::RunBackward() {
173
  if (!pre_op_) return;
X
Xin Pan 已提交
174

X
Xin Pan 已提交
175 176 177 178
  auto grads_t = grads_->GetMutable<framework::LoDTensor>();
  float* data = grads_t->mutable_data<float>(platform::CPUPlace());
  std::fill(data, data + grads_t->numel(), 1.0);

X
Xin Pan 已提交
179 180 181
  PADDLE_ENFORCE(
      grads_ ==
      pre_op_->output_vars_[pre_op_out_name_][pre_op_out_idx_]->grads_);
X
Xin Pan 已提交
182
  Autograd().RunBackward(this);
183 184 185 186
}

}  // namespace imperative
}  // namespace paddle