layer.cc 13.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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"
M
minqiyang 已提交
16

17 18 19 20
#include <deque>
#include <limits>
#include <map>
#include <random>
M
minqiyang 已提交
21
#include <unordered_set>
22 23 24 25
#include <utility>

#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/op_registry.h"
26
#include "paddle/fluid/framework/operator.h"
M
minqiyang 已提交
27 28 29
#include "paddle/fluid/framework/tensor_util.h"
#include "paddle/fluid/operators/math/blas.h"
#include "paddle/fluid/platform/device_context.h"
30 31 32 33 34
#include "paddle/fluid/string/printf.h"

namespace paddle {
namespace imperative {

X
polish  
Xin Pan 已提交
35 36
const char* PyLayer::kFwdInp = "X";
const char* PyLayer::kFwdOut = "Out";
X
polish  
Xin Pan 已提交
37

X
Xin Pan 已提交
38 39
std::map<int, py::object> py_funcs_;

40 41
using framework::Variable;

M
minqiyang 已提交
42 43 44 45 46 47 48 49 50 51 52
namespace detail {

template <typename T>
class TensorAddToFunctor : public boost::static_visitor<> {
 public:
  TensorAddToFunctor(int64_t numel, const T* x, T* y)
      : numel_(numel), x_(x), y_(y) {}

  void operator()(const platform::CPUPlace& place) {
    platform::CPUDeviceContext* ctx = dynamic_cast<platform::CPUDeviceContext*>(
        platform::DeviceContextPool::Instance().Get(place));
P
Paddle CI 已提交
53
    auto blas = operators::math::GetBlas<platform::CPUDeviceContext, T>(*ctx);
M
minqiyang 已提交
54 55 56 57 58 59 60 61
    blas.AXPY(numel_, 1., x_, y_);
  }

#ifdef PADDLE_WITH_CUDA
  void operator()(const platform::CUDAPlace& place) {
    platform::CUDADeviceContext* ctx =
        dynamic_cast<platform::CUDADeviceContext*>(
            platform::DeviceContextPool::Instance().Get(place));
P
Paddle CI 已提交
62
    auto blas = operators::math::GetBlas<platform::CUDADeviceContext, T>(*ctx);
M
minqiyang 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    blas.AXPY(numel_, 1., x_, y_);
  }
#else
  void operator()(const platform::CUDAPlace& place) {
    PADDLE_THROW("Do NOT support gradient merge in place %s", place);
  }
#endif

  // there is NO blas in CUDAPinnedPlace
  void operator()(const platform::CUDAPinnedPlace& place) {
    PADDLE_THROW("Do NOT support gradient merge in place %s", place);
  }

 private:
  int64_t numel_;
  const T* x_;
  T* y_;
};

}  // namespace detail

P
Paddle CI 已提交
84
void AddTo(Variable* src, Variable* dst, platform::Place place) {
M
minqiyang 已提交
85 86 87
  framework::Tensor* dst_tensor = dst->GetMutable<framework::LoDTensor>();
  framework::Tensor* src_tensor = src->GetMutable<framework::LoDTensor>();

M
minqiyang 已提交
88 89 90 91 92
  // FIXME(minqiyang): loss_grad op will pass a zero grad of label
  // ugly fix for it
  if (src_tensor->numel() == 0) {
    return;
  }
M
minqiyang 已提交
93

94 95 96
  PADDLE_ENFORCE(dst_tensor->numel() == src_tensor->numel(),
                 "dst_numel %lld vs. src_numel %lld", dst_tensor->numel(),
                 src_tensor->numel());
M
minqiyang 已提交
97 98 99 100 101

  detail::TensorAddToFunctor<float> func(
      src_tensor->numel(), src_tensor->data<float>(),
      dst_tensor->mutable_data<float>(place));
  boost::apply_visitor(func, place);
102 103 104 105
}

class Autograd {
 public:
X
Xin Pan 已提交
106
  Autograd() {}
107 108

  void RunBackward(VarBase* var) {
X
Xin Pan 已提交
109
    if (var->IsStopGradient()) {
110 111
      return;
    }
X
Xin Pan 已提交
112
    VLOG(3) << "start autograd";
113 114

    std::deque<OpBase*> ready;
X
Xin Pan 已提交
115
    ready.push_back(var->PreOp());
116

X
Xin Pan 已提交
117
    std::map<OpBase*, int> dep_counts = ComputeDepCounts(var->PreOp());
118 119 120 121

    while (!ready.empty()) {
      OpBase* ready_op = ready.front();
      ready.pop_front();
X
Xin Pan 已提交
122 123 124 125 126 127 128
      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;
X
Xin Pan 已提交
129
          if (ready_op->input_vars_[it.first][i]->IsStopGradient()) {
130 131
            continue;
          }
X
Xin Pan 已提交
132
          OpBase* pre_op = ready_op->pre_ops_[it.first][i];
X
Xin Pan 已提交
133 134 135 136 137 138 139 140
          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);
          }
141 142
        }
      }
143 144

      ready_op->InvokeBackwardHooks();
145 146 147 148 149 150 151 152 153 154 155 156 157 158
    }
  }

 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 已提交
159
      for (auto it : candidate->pre_ops_) {
X
Xin Pan 已提交
160 161
        for (OpBase* pre_op : it.second) {
          if (!pre_op) continue;
162
          VLOG(5) << "op dep " << candidate->Type() << " trace id "
163
                  << candidate->trace_id_ << " <---- " << it.first << " <---- "
164
                  << pre_op->Type() << " trace id " << pre_op->trace_id_;
X
Xin Pan 已提交
165 166 167 168 169
          if (visited.find(pre_op) == visited.end()) {
            visited.insert(pre_op);
            queue.push_back(pre_op);
          }
          ret[pre_op] += 1;
170 171 172 173 174 175 176
        }
      }
    }
    return ret;
  }
};

M
minqiyang 已提交
177 178
std::unique_ptr<VarBase> VarBase::NewVarBase(const platform::Place& dst_place,
                                             const bool blocking) const {
M
minqiyang 已提交
179 180 181
  PADDLE_ENFORCE(var_->IsInitialized(),
                 "Variable must be initialized when getting numpy tensor");

182 183 184 185
  // TODO(minqiyang): change this after move unique_name generator to CXX
  const framework::LoDTensor& self_tensor = var_->Get<framework::LoDTensor>();
  std::unique_ptr<VarBase> new_var(new VarBase(
      "Itmp", self_tensor.type(), self_tensor.dims(), dst_place, true, false));
P
Paddle CI 已提交
186 187 188
  framework::LoDTensor* tensor =
      new_var->var_->GetMutable<framework::LoDTensor>();
  tensor->set_lod(var_->Get<framework::LoDTensor>().lod());
M
minqiyang 已提交
189

P
Paddle CI 已提交
190
  if (blocking) {
M
minqiyang 已提交
191
    platform::DeviceContext* dev_ctx =
P
Paddle CI 已提交
192 193 194 195 196
        platform::DeviceContextPool::Instance().Get(dst_place);

    framework::TensorCopySync(var_->Get<framework::LoDTensor>(), dst_place,
                              tensor);

M
minqiyang 已提交
197 198
    dev_ctx->Wait();
  } else {
P
Paddle CI 已提交
199 200 201 202
    framework::TensorCopy(var_->Get<framework::LoDTensor>(), dst_place, tensor);
  }

  if (platform::is_gpu_place(dst_place)) {
203
    VLOG(3) << "copy tensor " << Name() << " from gpu";
M
minqiyang 已提交
204 205
  }

P
Paddle CI 已提交
206
  return new_var;
M
minqiyang 已提交
207 208
}

M
minqiyang 已提交
209
framework::LoDTensor& VarBase::GradValue() {
210 211 212
  VLOG(3) << "get var grad " << Name();
  PADDLE_ENFORCE_NOT_NULL(grads_,
                          "Could not get grad value from no grad variable");
M
minqiyang 已提交
213
  return *(grads_->var_->GetMutable<framework::LoDTensor>());
214 215
}

X
Xin Pan 已提交
216
std::map<std::string, std::vector<VarBase*>> OpBase::ApplyGrad() {
X
Xin Pan 已提交
217
  if (grad_op_descs_.empty() && backward_id_ <= 0) {
218
    VLOG(3) << "op with no grad: " << Type();
X
Xin Pan 已提交
219
    return {};
220 221
  }

222
  VLOG(3) << "apply op grad: " << Type();
M
minqiyang 已提交
223
  std::vector<VarBasePtrMap> tmp_grad_outputs;
X
Xin Pan 已提交
224 225
  if (backward_id_ > 0) {
    VLOG(3) << "py_layer_grad";
226 227
    tmp_grad_outputs.resize(1);
    tmp_grad_outputs[0][framework::GradVarName(PyLayer::kFwdOut)] =
X
Xin Pan 已提交
228 229 230
        PyLayer::ApplyGrad(
            backward_id_,
            grad_input_vars_[0][framework::GradVarName(PyLayer::kFwdInp)]);
X
Xin Pan 已提交
231
  } else {
232 233 234 235
    const size_t grad_op_count = grad_op_descs_.size();

    tmp_grad_outputs.resize(grad_op_count);
    for (size_t k = 0; k < grad_op_count; ++k) {
X
Xin Pan 已提交
236
      framework::OpDesc* grad_op_desc = grad_op_descs_[k];
237 238 239 240 241 242 243 244
      auto& grad_output_variable_map = grad_output_vars_[k];

      VLOG(3) << "apply grad op " << grad_op_desc->Type();

      // Allocate tmp grad output variable
      for (auto it : grad_output_variable_map) {
        auto& outputs = tmp_grad_outputs[k][it.first];
        outputs.reserve(it.second.size());
X
Xin Pan 已提交
245 246 247 248
        for (size_t i = 0; i < it.second.size(); ++i) {
          // Allocate a new variable
          Variable* tmp_var = new framework::Variable();
          tmp_var->GetMutable<framework::LoDTensor>();
M
minqiyang 已提交
249 250 251
          VarBase* tmp_var_base =
              new VarBase(it.second[i]->Name(), tmp_var, nullptr, true);
          outputs.emplace_back(tmp_var_base);
X
Xin Pan 已提交
252
        }
X
polish  
Xin Pan 已提交
253
      }
254

X
Xin Pan 已提交
255 256
      // No need to do compile time infer shape here.
      // grad_op_desc_->InferShape(*block_);
257
      // grad_op_desc->InferVarType(block_);
X
Xin Pan 已提交
258

X
Xin Pan 已提交
259 260
      std::unique_ptr<framework::OperatorBase> opbase =
          framework::OpRegistry::CreateOp(*grad_op_desc);
M
minqiyang 已提交
261 262 263 264 265 266 267 268 269

      // auto& info =
      // framework::OpInfoMap::Instance().Get(grad_op_desc->Type());
      // if (info.infer_var_type_) {
      // framework::RuntimeInferVarTypeContext infer_var_type_ctx(
      // this, &grad_inputs, &outputs, &attrs_map);
      // info.infer_var_type_(infer_var_type_ctx);
      // }

X
Xin Pan 已提交
270 271 272
      framework::OperatorWithKernel* op_kernel =
          dynamic_cast<framework::OperatorWithKernel*>(opbase.get());
      PADDLE_ENFORCE_NOT_NULL(op_kernel, "only support op with kernel");
X
Xin Pan 已提交
273

M
minqiyang 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
      // Run grad op
      framework::VariableValueMap grad_invars_map;
      framework::VariableValueMap grad_outvars_map;

      for (const auto& it : grad_input_vars_[k]) {
        auto& grad_invars = grad_invars_map[it.first];
        grad_invars.reserve(it.second.size());
        for (const VarBase* grad_inp : it.second) {
          PADDLE_ENFORCE_NOT_NULL(grad_inp->var_, "op %s input %s nullptr",
                                  grad_op_desc->Type(), grad_inp->Name());

          grad_invars.emplace_back(grad_inp->var_);
        }
      }

      for (const auto& it : tmp_grad_outputs[k]) {
        auto& grad_outvars = grad_outvars_map[it.first];
        grad_outvars.reserve(it.second.size());
        for (VarBase* grad_out : it.second) {
          PADDLE_ENFORCE_NOT_NULL(grad_out->var_, "op %s output %s nullptr",
                                  grad_op_desc->Type(), grad_out->Name());

          grad_outvars.emplace_back(grad_out->var_);
        }
      }

      framework::RuntimeContext ctx(grad_invars_map, grad_outvars_map);

X
Xin Pan 已提交
302 303 304
      framework::Scope scope;
      PreparedOp p = PreparedOp::Prepare(ctx, *op_kernel, place_);
      p.op.RuntimeInferShape(scope, place_, ctx);
305 306
      p.func(
          framework::ExecutionContext(p.op, scope, *p.dev_ctx, p.ctx, nullptr));
X
Xin Pan 已提交
307
    }
X
Xin Pan 已提交
308
  }
X
Xin Pan 已提交
309

310
  // Add tmp grad outputs to original grad vars
X
Xin Pan 已提交
311 312
  for (size_t k = 0; k < grad_output_vars_.size(); ++k) {
    for (auto it : grad_output_vars_[k]) {
313
      auto& outputs = tmp_grad_outputs[k][it.first];
X
Xin Pan 已提交
314 315 316 317
      auto& origin_outputs = it.second;
      PADDLE_ENFORCE_EQ(outputs.size(), origin_outputs.size());

      for (size_t i = 0; i < outputs.size(); ++i) {
M
minqiyang 已提交
318 319
        framework::Variable* grad = outputs[i]->var_;
        framework::Variable* orig_grad = origin_outputs[i]->var_;
X
Xin Pan 已提交
320 321 322
        AddTo(grad, orig_grad, place_);
        delete grad;
      }
323 324
    }
  }
X
Xin Pan 已提交
325

X
Xin Pan 已提交
326
  return input_vars_;
327 328
}

329
void OpBase::InvokeBackwardHooks() {
M
minqiyang 已提交
330
  VLOG(3) << "call backward hooks, hooks num: " << backward_hooks_.size();
331 332 333 334 335 336 337 338

  // call backward hooks
  for (py::object& callable : backward_hooks_) {
    callable(this);
  }
}

void OpBase::RegisterBackwardHooks(const py::object& callable) {
M
minqiyang 已提交
339
  VLOG(3) << "Register backward hooks " << trace_id_;
340 341 342 343 344

  // TODO(minqiyang): check the callable format
  backward_hooks_.push_back(callable);
}

X
Xin Pan 已提交
345
void VarBase::RunBackward() {
346
  if (!pre_op_) return;
X
Xin Pan 已提交
347

X
Xin Pan 已提交
348
  VLOG(3) << "start backward";
M
minqiyang 已提交
349
  auto grads_t = grads_->var_->GetMutable<framework::LoDTensor>();
M
minqiyang 已提交
350 351 352 353
  operators::math::set_constant(
      *(platform::DeviceContextPool::Instance().Get(
          var_->GetMutable<framework::LoDTensor>()->place())),
      grads_t, 1.0);
X
Xin Pan 已提交
354

X
Xin Pan 已提交
355 356 357
  PADDLE_ENFORCE(
      grads_ ==
      pre_op_->output_vars_[pre_op_out_name_][pre_op_out_idx_]->grads_);
X
Xin Pan 已提交
358
  Autograd().RunBackward(this);
359 360
}

X
Xin Pan 已提交
361 362 363 364
void PyLayer::RegisterFunc(int func_id, const py::object& py_func) {
  py_funcs_[func_id] = py_func;
}

X
polish  
Xin Pan 已提交
365 366
int PyLayer::NumFuncs() { return py_funcs_.size(); }

M
minqiyang 已提交
367 368
std::vector<framework::Variable*> PyLayer::Apply(
    int func_id, const std::vector<VarBase*>& inputs) {
X
Xin Pan 已提交
369
  PADDLE_ENFORCE(py_funcs_.find(func_id) != py_funcs_.end());
M
minqiyang 已提交
370
  return CallPythonFunc(py_funcs_[func_id], inputs);
X
Xin Pan 已提交
371 372
}

M
minqiyang 已提交
373 374
std::vector<VarBase*> PyLayer::ApplyGrad(int func_id,
                                         const std::vector<VarBase*>& inputs) {
X
polish  
Xin Pan 已提交
375
  PADDLE_ENFORCE(py_funcs_.find(func_id) != py_funcs_.end());
M
minqiyang 已提交
376 377 378 379 380 381 382 383 384 385 386 387
  auto rets = CallPythonFunc(py_funcs_[func_id], inputs);

  std::vector<VarBase*> outs;
  outs.reserve(rets.size());
  for (size_t i = 0U; i != rets.size(); ++i) {
    outs.emplace_back(new VarBase(
        string::Sprintf("%s_out_%d", framework::GradVarName(PyLayer::kFwdOut),
                        i),
        rets[i], nullptr, true));
  }

  return outs;
X
polish  
Xin Pan 已提交
388
}
X
Xin Pan 已提交
389

X
polish  
Xin Pan 已提交
390
std::vector<framework::Variable*> PyLayer::CallPythonFunc(
M
minqiyang 已提交
391
    const py::object& callable, const std::vector<VarBase*>& ins) {
X
polish  
Xin Pan 已提交
392 393 394
  py::gil_scoped_acquire guard;
  py::tuple in_args(ins.size());
  for (size_t i = 0; i < ins.size(); ++i) {
M
minqiyang 已提交
395
    const framework::LoDTensor& t = ins[i]->var_->Get<framework::LoDTensor>();
X
polish  
Xin Pan 已提交
396
    in_args[i] = t.IsInitialized() ? py::cast(t) : py::cast(nullptr);
X
Xin Pan 已提交
397
  }
X
polish  
Xin Pan 已提交
398 399 400 401 402 403 404
  VLOG(3) << "pyfunc in " << py::len(in_args);

  // TODO(panyx0718): Who owns the returned LoDTensor.
  auto ret = callable(in_args);
  auto ret_tuple = py::cast<py::tuple>(ret);
  size_t ret_num = py::len(ret_tuple);
  std::vector<framework::Variable*> outs;
M
minqiyang 已提交
405
  outs.reserve(ret_num);
X
polish  
Xin Pan 已提交
406 407 408 409 410 411 412 413 414 415
  VLOG(3) << "pyfunc out " << ret_num;
  for (size_t i = 0; i < ret_num; ++i) {
    try {
      auto* py_out_tensor = py::cast<framework::LoDTensor*>(ret_tuple[i]);
      PADDLE_ENFORCE_NOT_NULL(py_out_tensor,
                              "Output tensor %d should not be nullptr", i);
      auto* var = new framework::Variable();
      auto* tensor = var->GetMutable<framework::LoDTensor>();
      tensor->ShareDataWith(*py_out_tensor);
      tensor->set_lod(py_out_tensor->lod());
M
minqiyang 已提交
416
      outs.emplace_back(var);
X
polish  
Xin Pan 已提交
417 418 419 420 421
    } catch (py::cast_error&) {
      PADDLE_THROW("The %d-th output must be LoDTensor", i);
    }
  }
  return outs;
X
Xin Pan 已提交
422 423
}

424 425
}  // namespace imperative
}  // namespace paddle