eager_deletion_op_handle.cc 4.2 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

S
sneaxiy 已提交
15 16 17 18
#include <memory>
#include <unordered_set>
#include <utility>

S
sneaxiy 已提交
19 20 21 22
#include "paddle/fluid/framework/details/eager_deletion_op_handle.h"
#include "paddle/fluid/framework/lod_tensor_array.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/selected_rows.h"
S
sneaxiy 已提交
23
#ifdef PADDLE_WITH_CUDA
S
fix bug  
sneaxiy 已提交
24
#include "paddle/fluid/platform/cuda_device_guard.h"
S
sneaxiy 已提交
25
#endif
S
sneaxiy 已提交
26 27 28 29 30 31 32

namespace paddle {
namespace framework {
namespace details {

EagerDeletionOpHandle::EagerDeletionOpHandle(
    ir::Node *node, const Scope *scope, const platform::Place &place,
S
sneaxiy 已提交
33 34
    const std::unordered_set<std::string> &var_names, GarbageCollector *gc,
    AtomicReferenceCountMap *ref_cnts)
S
fix bug  
sneaxiy 已提交
35 36 37 38 39
    : OpHandleBase(node),
      scope_(scope),
      var_names_(var_names),
      gc_(gc),
      ref_cnts_(ref_cnts) {
S
sneaxiy 已提交
40 41
#ifdef PADDLE_WITH_CUDA
  if (platform::is_gpu_place(place)) {
S
sneaxiy 已提交
42
    dev_ctx_ = reinterpret_cast<platform::CUDADeviceContext *>(
S
sneaxiy 已提交
43
        platform::DeviceContextPool::Instance().Get(place));
S
sneaxiy 已提交
44
    if (dynamic_cast<StreamGarbageCollector *>(gc_)) {
S
fix bug  
sneaxiy 已提交
45 46
      platform::CUDADeviceGuard guard(
          boost::get<platform::CUDAPlace>(place).device);
S
sneaxiy 已提交
47
      PADDLE_ENFORCE(cudaEventCreateWithFlags(&event_, cudaEventDisableTiming));
S
fix bug  
sneaxiy 已提交
48
      PADDLE_ENFORCE_NOT_NULL(event_);
S
sneaxiy 已提交
49 50 51
    }
  }
#endif
S
sneaxiy 已提交
52
  PADDLE_ENFORCE(!var_names_.empty(), "Var names cannot be empty");
S
sneaxiy 已提交
53 54 55 56 57 58
}

EagerDeletionOpHandle::~EagerDeletionOpHandle() {
#ifdef PADDLE_WITH_CUDA
  if (event_) {
    auto gpu_place = boost::get<platform::CUDAPlace>(dev_ctx_->GetPlace());
S
fix bug  
sneaxiy 已提交
59
    platform::CUDADeviceGuard guard(gpu_place.device);
S
sneaxiy 已提交
60 61 62 63 64
    PADDLE_ENFORCE(cudaEventDestroy(event_));
  }
#endif
}

S
sneaxiy 已提交
65
std::string EagerDeletionOpHandle::Name() const { return "eager_deletion"; }
S
sneaxiy 已提交
66 67

void EagerDeletionOpHandle::RunImpl() {
S
sneaxiy 已提交
68
  Scope *exec_scope = nullptr;
S
sneaxiy 已提交
69
  std::deque<std::shared_ptr<memory::Allocation>> garbages;
S
sneaxiy 已提交
70 71
  for (auto &name : var_names_) {
    auto it = ref_cnts_->find(name);
S
sneaxiy 已提交
72
    // Reference count has not decreased to 0
S
sneaxiy 已提交
73
    if (it == ref_cnts_->end() || it->second.fetch_sub(1) != 1) {
S
sneaxiy 已提交
74 75 76
      continue;
    }

S
sneaxiy 已提交
77 78 79 80
    if (!exec_scope) {
      exec_scope = scope_->FindVar(kLocalExecScopeName)->Get<Scope *>();
    }

S
sneaxiy 已提交
81
    // Var not found
S
sneaxiy 已提交
82 83 84 85 86
    auto *var = exec_scope->FindVar(name);
    if (var == nullptr) {
      continue;
    }

S
sneaxiy 已提交
87 88
    VLOG(2) << "Erase variable " << name;

S
sneaxiy 已提交
89
    if (var->IsType<LoDTensor>()) {
S
sneaxiy 已提交
90
      garbages.emplace_back(var->GetMutable<LoDTensor>()->MoveMemoryHolder());
S
sneaxiy 已提交
91
    } else if (var->IsType<SelectedRows>()) {
S
sneaxiy 已提交
92
      garbages.emplace_back(
S
sneaxiy 已提交
93
          var->GetMutable<SelectedRows>()->mutable_value()->MoveMemoryHolder());
S
sneaxiy 已提交
94
    } else if (var->IsType<LoDTensorArray>()) {
S
sneaxiy 已提交
95 96
      auto *tensor_arr = var->GetMutable<LoDTensorArray>();
      for (auto &t : *tensor_arr) {
S
sneaxiy 已提交
97
        garbages.emplace_back(t.MoveMemoryHolder());
S
sneaxiy 已提交
98
      }
S
sneaxiy 已提交
99 100
    } else {
      PADDLE_THROW("Type %s of %s is not supported eager deletion",
S
sneaxiy 已提交
101
                   framework::ToTypeName(var->Type()), name);
S
sneaxiy 已提交
102 103 104
    }
  }

S
sneaxiy 已提交
105 106
  if (!garbages.empty()) {
    ClearGarbages(&garbages);
S
sneaxiy 已提交
107 108 109
  }
}

S
sneaxiy 已提交
110 111
void EagerDeletionOpHandle::ClearGarbages(
    std::deque<std::shared_ptr<memory::Allocation>> *garbages) {
S
sneaxiy 已提交
112 113 114 115
#ifdef PADDLE_WITH_CUDA
  if (event_) {
    auto compute_stream = dev_ctx_->stream();
    auto callback_stream =
S
sneaxiy 已提交
116
        reinterpret_cast<StreamGarbageCollector *>(gc_)->stream();
S
sneaxiy 已提交
117 118 119 120
    auto callback_func = [=]() {
      PADDLE_ENFORCE(cudaEventRecord(event_, compute_stream));
      PADDLE_ENFORCE(cudaStreamWaitEvent(callback_stream, event_, 0));
    };
S
sneaxiy 已提交
121
    gc_->Add(std::move(*garbages), callback_func);
S
sneaxiy 已提交
122 123
  } else {
#endif
S
sneaxiy 已提交
124
    gc_->Add(std::move(*garbages));
S
sneaxiy 已提交
125 126 127 128 129 130 131 132
#ifdef PADDLE_WITH_CUDA
  }
#endif
}

}  // namespace details
}  // namespace framework
}  // namespace paddle