tracer.cc 11.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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/tracer.h"

M
minqiyang 已提交
17
#include <memory>
M
minqiyang 已提交
18
#include <set>
M
minqiyang 已提交
19 20
#include <unordered_map>
#include <unordered_set>
M
minqiyang 已提交
21

M
minqiyang 已提交
22 23 24 25
#include "paddle/fluid/operators/math/math_function.h"
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/enforce.h"

26 27 28 29 30 31 32 33 34
#ifdef WITH_GPERFTOOLS
#include "gperftools/profiler.h"
#endif

DEFINE_string(
    tracer_profile_fname, "",
    "Profiler filename for imperative tracer, which generated by gperftools."
    "Only valid when compiled `WITH_PROFILER=ON`. Empty if disable.");

35
namespace paddle {
M
minqiyang 已提交
36 37
namespace imperative {

38 39 40 41 42
static std::once_flag gTracerProfileOnce;
#ifdef WITH_GPERFTOOLS
static bool gTracerProfilerStarted = false;
#endif

M
minqiyang 已提交
43 44 45
void CreateGradOp(const framework::OpDesc& op_desc,
                  const std::unordered_set<std::string>& no_grad_set,
                  const std::vector<framework::BlockDesc*>& grad_sub_block,
X
Xin Pan 已提交
46
                  std::vector<framework::OpDesc*>* grad_op_descs,
M
minqiyang 已提交
47
                  std::unordered_map<std::string, std::string>* grad_to_var) {
X
Xin Pan 已提交
48 49
  PADDLE_ENFORCE(grad_op_descs->empty());
  std::vector<std::unique_ptr<framework::OpDesc>> descs =
M
minqiyang 已提交
50 51 52
      framework::OpInfoMap::Instance()
          .Get(op_desc.Type())
          .GradOpMaker()(op_desc, no_grad_set, grad_to_var, grad_sub_block);
J
JiabinYang 已提交
53

X
Xin Pan 已提交
54 55 56
  for (auto& desc : descs) {
    grad_op_descs->emplace_back(desc.release());
  }
M
minqiyang 已提交
57 58
}

M
minqiyang 已提交
59 60 61 62
void InitVar(framework::Variable* var, framework::Variable* grad_var,
             platform::DeviceContext* dev_ctx) {
  PADDLE_ENFORCE_NOT_NULL(dev_ctx,
                          "Could not get valid device from forward op");
M
minqiyang 已提交
63
  auto& var_t = var->Get<framework::LoDTensor>();
M
minqiyang 已提交
64 65 66
  grad_var->GetMutable<framework::LoDTensor>()->mutable_data<float>(
      var_t.dims(), dev_ctx->GetPlace());
  operators::math::set_constant(
M
minqiyang 已提交
67
      *dev_ctx, grad_var->GetMutable<framework::LoDTensor>(), 0.0);
M
minqiyang 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
}

platform::Place GetExpectedPlace(platform::Place place, VarBasePtrMap inputs) {
  platform::Place result = place;
  for (auto it : inputs) {
    for (VarBase* var : it.second) {
      platform::Place tmp_place =
          var->var_->Get<framework::LoDTensor>().place();
      if (!platform::is_same_place(tmp_place, result)) {
        PADDLE_THROW(
            "Input variable should keep in the same place: %s, but get place: "
            "%s of input %s instead",
            result, tmp_place, it.first);
      }
    }
  }

  return result;
M
minqiyang 已提交
86 87
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101
Tracer::Tracer(framework::BlockDesc* root_block) : root_block_(root_block) {
  if (!FLAGS_tracer_profile_fname.empty()) {
    std::call_once(gTracerProfileOnce, [] {
#ifdef WITH_GPERFTOOLS
      ProfilerStart(FLAGS_tracer_profile_fname.c_str());
      gTracerProfilerStarted = true;
#else
      LOG(WARNING) << "Paddle is not compiled with gperftools. "
                      "FLAGS_tracer_profile_fname will be ignored";
#endif
    });
  }
}

M
minqiyang 已提交
102 103 104 105 106
std::set<std::string> Tracer::Trace(OpBase* op, const VarBasePtrMap& inputs,
                                    const VarBasePtrMap& outputs,
                                    framework::BlockDesc* block,
                                    const platform::Place expected_place,
                                    const bool stop_gradient) {
107 108 109 110 111 112
#ifdef WITH_GPERFTOOLS
  if (gTracerProfilerStarted) {
    ProfilerFlush();
  }
#endif

M
minqiyang 已提交
113 114 115
  std::map<std::string, VarBase*> vars;

  framework::OpDesc* op_desc = op->op_desc_;
116 117
  VLOG(3) << "tracer tracing " << op_desc->Type() << " trace id "
          << op->trace_id_;
M
minqiyang 已提交
118 119
  op_desc->InferShape(*block);
  op_desc->InferVarType(block);
M
minqiyang 已提交
120

M
minqiyang 已提交
121 122 123 124 125 126 127 128 129
  std::unique_ptr<framework::OperatorBase> op_base =
      framework::OpRegistry::CreateOp(*op_desc);

  framework::VariableValueMap invars_map;
  framework::VariableValueMap outvars_map;

  op->input_vars_ = inputs;
  for (auto it : op->input_vars_) {
    auto& invars = invars_map[it.first];
M
minqiyang 已提交
130
    invars.reserve(it.second.size());
M
minqiyang 已提交
131
    for (VarBase* inp : it.second) {
M
minqiyang 已提交
132
      PADDLE_ENFORCE_NOT_NULL(inp->var_, "op %s input %s nullptr",
M
minqiyang 已提交
133 134
                              op->op_desc_->Type(), inp->var_desc_->Name());

M
minqiyang 已提交
135
      invars.emplace_back(inp->var_);
M
minqiyang 已提交
136
      vars[inp->var_desc_->Name()] = inp;
M
minqiyang 已提交
137
      if (inp->PreOp() && !inp->IsStopGradient()) {
X
Xin Pan 已提交
138 139
        op->pre_ops_[it.first].push_back(inp->PreOp());
        op->pre_ops_out_idx_[it.first].push_back(inp->PreOpOutIdx());
140
        VLOG(3) << "add pre op " << inp->PreOp()->op_desc_->Type();
M
minqiyang 已提交
141 142 143 144
      } else {
        op->pre_ops_[it.first].push_back(nullptr);
      }
      VLOG(3) << "input vname " << inp->var_desc_->Name() << " "
145 146
              << inp->var_->IsInitialized() << " stop_gradient "
              << inp->IsStopGradient();
M
minqiyang 已提交
147 148 149 150 151 152 153
    }
  }

  op->output_vars_ = outputs;
  for (auto it : op->output_vars_) {
    auto& outvars = outvars_map[it.first];
    const std::vector<VarBase*>& outputs = it.second;
M
minqiyang 已提交
154
    outvars.reserve(outputs.size());
M
minqiyang 已提交
155 156
    for (size_t i = 0; i < outputs.size(); ++i) {
      VarBase* out = outputs[i];
M
minqiyang 已提交
157
      outvars.emplace_back(out->var_);
M
minqiyang 已提交
158 159 160 161 162 163 164 165
      vars[out->var_desc_->Name()] = out;

      framework::VarDesc* var_desc = block->FindVar(out->var_desc_->Name());
      if (var_desc->GetType() == framework::proto::VarType::LOD_TENSOR) {
        out->var_->GetMutable<framework::LoDTensor>();
      } else {
        LOG(ERROR) << "tracer doesn't support yet";
      }
X
Xin Pan 已提交
166
      out->TrackPreOp(op, it.first, i, stop_gradient);
M
minqiyang 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

      VLOG(3) << "output vname " << out->var_desc_->Name() << " "
              << out->var_->IsInitialized();
    }
  }

  VLOG(3) << "tracer running " << op_desc->Type();
  framework::RuntimeContext ctx(invars_map, outvars_map);

  // TODO(panyx0718): Cache p.
  framework::OperatorWithKernel* op_kernel =
      dynamic_cast<framework::OperatorWithKernel*>(op_base.get());
  PADDLE_ENFORCE_NOT_NULL(op_kernel, "only support op with kernel");

  framework::Scope scope;
P
Paddle CI 已提交
182 183 184
  op->place_ = GetExpectedPlace(expected_place, inputs);
  PreparedOp prepared_op = PreparedOp::Prepare(ctx, *op_kernel, op->place_);
  prepared_op.op.RuntimeInferShape(scope, op->place_, ctx);
X
polish  
Xin Pan 已提交
185 186 187
  prepared_op.func(
      framework::ExecutionContext(prepared_op.op, scope, *prepared_op.dev_ctx,
                                  prepared_op.ctx, prepared_op.kernel_configs));
M
minqiyang 已提交
188

M
minqiyang 已提交
189
  std::set<std::string> vars_saved_for_backward;
M
minqiyang 已提交
190

M
minqiyang 已提交
191
  if (!stop_gradient) {
192 193
    std::unique_ptr<std::unordered_map<std::string, std::string>> grad_to_var(
        new std::unordered_map<std::string, std::string>());
X
Xin Pan 已提交
194 195 196 197
    CreateGradOp(*op_desc, {}, {block}, &op->grad_op_descs_, grad_to_var.get());

    op->grad_input_vars_.resize(op->grad_op_descs_.size());
    op->grad_output_vars_.resize(op->grad_op_descs_.size());
M
minqiyang 已提交
198

X
Xin Pan 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
    for (size_t i = 0; i < op->grad_op_descs_.size(); ++i) {
      framework::OpDesc* grad_op_desc = op->grad_op_descs_[i];
      for (auto it : grad_op_desc->Inputs()) {
        auto& grad_in_vars = op->grad_input_vars_[i][it.first];
        for (const std::string& grad_invar : it.second) {
          block->FindRecursiveOrCreateVar(grad_invar);
          auto var_it = grad_to_var->find(grad_invar);
          if (var_it == grad_to_var->end()) {
            auto fwd_var_it = vars.find(grad_invar);
            PADDLE_ENFORCE(fwd_var_it != vars.end());
            // Forward inputs or outputs.
            grad_in_vars.push_back(fwd_var_it->second->var_);
          } else {
            VarBase* var = vars[var_it->second];
            if (!var->grads_->var_->IsInitialized()) {
              InitVar(var->var_, var->grads_->var_,
                      prepared_op.GetDeviceContext());
            }
            // Douts.
            grad_in_vars.push_back(var->grads_->var_);
          }
M
minqiyang 已提交
220 221

          vars_saved_for_backward.insert(it.first);
X
Xin Pan 已提交
222 223 224 225 226 227 228 229 230 231 232 233
        }
      }

      for (auto it : grad_op_desc->Outputs()) {
        auto& grad_out_vars = op->grad_output_vars_[i][it.first];
        for (const std::string& grad_outvar : it.second) {
          block->FindRecursiveOrCreateVar(grad_outvar);
          auto var_it = grad_to_var->find(grad_outvar);
          PADDLE_ENFORCE(var_it != grad_to_var->end(),
                         "Could not found the grad op output var, should this "
                         "operator %s's stop gradient be True",
                         op_desc->Type());
M
minqiyang 已提交
234
          VarBase* var = vars[var_it->second];
M
minqiyang 已提交
235
          if (!var->grads_->var_->IsInitialized()) {
M
minqiyang 已提交
236 237
            InitVar(var->var_, var->grads_->var_,
                    prepared_op.GetDeviceContext());
M
minqiyang 已提交
238
          }
X
Xin Pan 已提交
239
          grad_out_vars.push_back(var->grads_->var_);
M
minqiyang 已提交
240 241 242 243 244 245
        }
      }
    }
  }

  op->block_ = block;
M
minqiyang 已提交
246
  return vars_saved_for_backward;
M
minqiyang 已提交
247 248
}

249 250 251 252
std::vector<VarBase*> Tracer::PyTrace(OpBase* op,
                                      const std::vector<VarBase*>& inputs,
                                      bool stop_gradient) {
  VLOG(3) << "py_trace";
X
Xin Pan 已提交
253 254
  op->input_vars_[PyLayer::kFwdInp] = inputs;
  op->output_vars_[PyLayer::kFwdOut] = PyLayer::Apply(op->forward_id_, inputs);
255
  for (VarBase* inp : inputs) {
M
minqiyang 已提交
256
    if (inp->PreOp() && !inp->IsStopGradient()) {
X
Xin Pan 已提交
257 258
      op->pre_ops_[PyLayer::kFwdInp].push_back(inp->PreOp());
      op->pre_ops_out_idx_[PyLayer::kFwdInp].push_back(inp->PreOpOutIdx());
259
    } else {
X
Xin Pan 已提交
260
      op->pre_ops_[PyLayer::kFwdInp].push_back(nullptr);
261 262 263
    }
  }

X
Xin Pan 已提交
264
  auto& outputs = op->output_vars_[PyLayer::kFwdOut];
265 266
  for (size_t i = 0; i < outputs.size(); ++i) {
    VarBase* out = outputs[i];
X
Xin Pan 已提交
267
    out->TrackPreOp(op, PyLayer::kFwdOut, i, stop_gradient);
268 269
  }
  if (!stop_gradient) {
X
Xin Pan 已提交
270 271
    op->grad_input_vars_.resize(1);
    op->grad_output_vars_.resize(1);
X
Xin Pan 已提交
272
    auto& grad_input_vars =
X
Xin Pan 已提交
273
        op->grad_input_vars_[0][framework::GradVarName(PyLayer::kFwdInp)];
X
Xin Pan 已提交
274
    auto& grad_output_vars =
X
Xin Pan 已提交
275
        op->grad_output_vars_[0][framework::GradVarName(PyLayer::kFwdOut)];
276 277 278 279 280 281 282

    for (const VarBase* inp : inputs) {
      grad_input_vars.push_back(inp->var_);
    }
    for (VarBase* out : outputs) {
      grad_input_vars.push_back(out->var_);
    }
M
minqiyang 已提交
283 284

    platform::CPUPlace place;
285
    for (VarBase* out : outputs) {
M
minqiyang 已提交
286
      grad_input_vars.push_back(out->grads_->var_);
287
      if (!grad_input_vars.back()->IsInitialized()) {
M
minqiyang 已提交
288 289 290
        // TODO(minqiyang): Add GPU support for PyLayer, only support CPU now
        InitVar(out->var_, grad_input_vars.back(),
                platform::DeviceContextPool::Instance().Get(place));
291 292
      }
    }
M
minqiyang 已提交
293

294
    for (const VarBase* inp : inputs) {
M
minqiyang 已提交
295
      grad_output_vars.push_back(inp->grads_->var_);
296
      if (!grad_output_vars.back()->IsInitialized()) {
M
minqiyang 已提交
297 298 299
        // TODO(minqiyang): Add GPU support for PyLayer, only support CPU now
        InitVar(inp->var_, grad_output_vars.back(),
                platform::DeviceContextPool::Instance().Get(place));
300 301 302 303 304 305
      }
    }
  }
  return outputs;
}

M
minqiyang 已提交
306
}  // namespace imperative
307
}  // namespace paddle