tracer.cc 5.3 KB
Newer Older
J
Jiabin Yang 已提交
1
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14
//
// 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/tracer.h"
H
hong 已提交
15
#include <set>
M
minqiyang 已提交
16
#include <unordered_set>
17
#include <utility>
C
chengduo 已提交
18
#include "paddle/fluid/platform/profiler.h"
M
minqiyang 已提交
19

20
namespace paddle {
M
minqiyang 已提交
21 22
namespace imperative {

H
hong 已提交
23 24 25 26 27 28 29 30 31 32 33
struct OpBaseCmp {
  bool operator()(OpBase* first, OpBase* second) {
    return first->id() > second->id();
  }
};

static std::vector<std::unique_ptr<OpBase>> CreateGradOpBases(
    const OpBase* fw_op_base, const NameVarBaseMap& in,
    const NameVarBaseMap& out) {
  if (fw_op_base->Info().dygraph_grad_op_maker_) {
    return fw_op_base->Info().dygraph_grad_op_maker_(fw_op_base, in, out);
J
Jiabin Yang 已提交
34 35
  } else {
    return {};
X
Xin Pan 已提交
36
  }
M
minqiyang 已提交
37 38
}

39 40 41 42 43 44 45 46 47 48
static void PassStopGradient(const NameVarBaseMap& outs, bool generate_grad) {
  for (const auto& name_pair : outs) {
    for (const auto& vb : name_pair.second) {
      VLOG(6) << "Set output: " << vb->Name() << "'s OverridedStopGradient as "
              << generate_grad;
      vb->InnerSetOverridedStopGradient(generate_grad);
    }
  }
}

J
Jiabin Yang 已提交
49 50 51 52 53 54 55 56 57
void Tracer::TraceOp(const std::string& type, const NameVarBaseMap& ins,
                     const NameVarBaseMap& outs, framework::AttributeMap attrs,
                     const platform::Place& place, bool trace_backward) {
  platform::RecordEvent event(type);
  VLOG(1) << "Trace Op: " << type;
  size_t op_id = GenerateUniqueId();
  auto op = OpBase::Create(op_id, type, ins, outs, std::move(attrs), place);
  op->Run(ins, outs);

58 59 60 61 62
  if (enable_program_desc_tracing_) {
    VLOG(5) << "Trace op " << type << " into ProgramDesc";
    program_desc_tracer_->InsertOp(type, ins, outs, op->Attrs());
  }

J
Jiabin Yang 已提交
63
  if (ComputeRequiredGrad(ins, outs, trace_backward)) {
H
hong 已提交
64
    TraceBackward(op, ins, outs);
65 66
  } else {
    VLOG(3) << "No Grad to track for Op: " << type;
67
  }
M
minqiyang 已提交
68 69
}

J
Jiabin Yang 已提交
70
bool Tracer::ComputeRequiredGrad(const NameVarBaseMap& ins,
71
                                 const NameVarBaseMap& outs,
J
Jiabin Yang 已提交
72
                                 bool trace_backward) {
73 74 75 76 77 78 79 80 81 82 83 84 85
  if (!trace_backward) return false;

  for (const auto& name_pair : ins) {
    for (const auto& var_base : name_pair.second) {
      if (!var_base->OverridedStopGradient()) {
        VLOG(6) << "Find out input: " << var_base->Name()
                << "'s GeneratedGrad is True";
        PassStopGradient(outs, var_base->OverridedStopGradient());
        return true;
      }
    }
  }
  return false;
M
minqiyang 已提交
86 87
}

J
Jiabin Yang 已提交
88 89 90 91 92 93
void Tracer::TraceBackward(const std::shared_ptr<OpBase>& fwd_op,
                           const NameVarBaseMap& ins,
                           const NameVarBaseMap& outs) {
  // grad_to_var is a map of framework::GradVarName(in_var_name/out_var_name) ->
  // in_var_name/out_var_name
  std::unordered_map<std::string, std::string> grad_to_var;
94

J
Jiabin Yang 已提交
95
  // Get grad_op_desc using fwd_op_desc
H
hong 已提交
96 97
  std::vector<std::unique_ptr<OpBase>> grad_op_bases_ =
      CreateGradOpBases(fwd_op.get(), ins, outs);
98

H
hong 已提交
99
  size_t grad_op_num = grad_op_bases_.size();
100

H
hong 已提交
101 102 103 104
  std::set<VarBase*> set_input_vars;
  for (auto& fwd_in_it : ins) {
    for (auto& var_base_it : fwd_in_it.second) {
      set_input_vars.insert(var_base_it.get());
M
minqiyang 已提交
105 106 107
    }
  }

H
hong 已提交
108 109 110
  for (auto& fwd_out_it : outs) {
    for (auto& var_base_it : fwd_out_it.second) {
      set_input_vars.insert(var_base_it.get());
M
minqiyang 已提交
111 112 113
    }
  }

H
hong 已提交
114
  for (size_t i = 0; i < grad_op_num; ++i) {
J
Jiabin Yang 已提交
115 116
    size_t trace_id = fwd_op->id();

H
hong 已提交
117 118 119 120 121 122 123 124 125 126 127 128
    std::shared_ptr<OpBase> grad_op = std::move(grad_op_bases_[i]);
    grad_op->SetId(trace_id);
    grad_op->SetPlace(fwd_op->place());
    grad_op->CreateOperatorBase();

    auto& grad_in = *(grad_op->GetMutableInsMap());
    auto& grad_out = *(grad_op->GetMutableOutsMap());
    for (auto& grad_in_it : grad_in) {
      for (auto& var_base_it : grad_in_it.second) {
        if (set_input_vars.count(var_base_it.get()) == 0) {
          var_base_it->AddGradOps(grad_op);
          engine_->InsertGradVar(var_base_it.get());
J
Jiabin Yang 已提交
129 130 131
        }
      }
    }
132

H
hong 已提交
133 134 135 136 137 138 139 140 141 142
    std::set<OpBase*, OpBaseCmp> visited_preceding_ops;
    for (auto& grad_out_it : grad_out) {
      bool flag_clear_list = false;
      for (auto& var_base_it : grad_out_it.second) {
        if ((!var_base_it->OverridedStopGradient()) ||
            (grad_out_it.second.size() > 1)) {
          auto preceding_ops = var_base_it->GradOps();
          if (!preceding_ops.empty()) {
            for (const auto& op : preceding_ops) {
              visited_preceding_ops.insert(op);
J
Jiabin Yang 已提交
143 144 145
            }
          }
        } else {
H
hong 已提交
146
          flag_clear_list = true;
M
minqiyang 已提交
147 148
        }
      }
H
hong 已提交
149 150 151
      if (flag_clear_list) {
        grad_out_it.second.clear();
      }
M
minqiyang 已提交
152
    }
H
hong 已提交
153 154 155 156 157 158 159
    std::vector<OpBase*> vec_preceding_ops(visited_preceding_ops.begin(),
                                           visited_preceding_ops.end());

    grad_op->SetGradPendingOps(std::move(vec_preceding_ops));

    // this OpBase* is just used to manage op's life time
    engine_->InsertOp(grad_op.get(), grad_op);
M
minqiyang 已提交
160 161
  }
}
J
Jiabin Yang 已提交
162

M
minqiyang 已提交
163
}  // namespace imperative
164
}  // namespace paddle