eager_deletion_op_handle.cc 4.0 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// 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/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 已提交
19
#ifdef PADDLE_WITH_CUDA
S
fix bug  
sneaxiy 已提交
20
#include "paddle/fluid/platform/cuda_device_guard.h"
S
sneaxiy 已提交
21
#endif
S
sneaxiy 已提交
22 23 24 25 26 27 28

namespace paddle {
namespace framework {
namespace details {

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

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

std::string EagerDeletionOpHandle::Name() const { return "eager_deletion"; }

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

    auto *var = exec_scope->FindVar(name);
    if (var == nullptr) {
      continue;
    }

S
sneaxiy 已提交
77 78
    VLOG(2) << "Erase variable " << name;

S
sneaxiy 已提交
79
    if (var->IsType<LoDTensor>()) {
S
sneaxiy 已提交
80
      garbages.emplace_back(var->GetMutable<LoDTensor>()->MoveMemoryHolder());
S
sneaxiy 已提交
81
    } else if (var->IsType<SelectedRows>()) {
S
sneaxiy 已提交
82
      garbages.emplace_back(
S
sneaxiy 已提交
83
          var->GetMutable<SelectedRows>()->mutable_value()->MoveMemoryHolder());
S
sneaxiy 已提交
84
    } else if (var->IsType<LoDTensorArray>()) {
S
sneaxiy 已提交
85 86
      auto *tensor_arr = var->GetMutable<LoDTensorArray>();
      for (auto &t : *tensor_arr) {
S
sneaxiy 已提交
87
        garbages.emplace_back(t.MoveMemoryHolder());
S
sneaxiy 已提交
88
      }
S
sneaxiy 已提交
89 90 91
    } else {
      PADDLE_THROW("Type %s of %s is not supported eager deletion",
                   var->Type().name(), name);
S
sneaxiy 已提交
92 93 94
    }
  }

S
sneaxiy 已提交
95 96
  if (!garbages.empty()) {
    ClearGarbages(&garbages);
S
sneaxiy 已提交
97 98 99
  }
}

S
sneaxiy 已提交
100 101
void EagerDeletionOpHandle::ClearGarbages(
    std::deque<std::shared_ptr<memory::Allocation>> *garbages) {
S
sneaxiy 已提交
102 103 104 105
#ifdef PADDLE_WITH_CUDA
  if (event_) {
    auto compute_stream = dev_ctx_->stream();
    auto callback_stream =
S
sneaxiy 已提交
106
        reinterpret_cast<StreamGarbageCollector *>(gc_)->stream();
S
sneaxiy 已提交
107 108 109 110
    auto callback_func = [=]() {
      PADDLE_ENFORCE(cudaEventRecord(event_, compute_stream));
      PADDLE_ENFORCE(cudaStreamWaitEvent(callback_stream, event_, 0));
    };
S
sneaxiy 已提交
111
    gc_->Add(std::move(*garbages), callback_func);
S
sneaxiy 已提交
112 113
  } else {
#endif
S
sneaxiy 已提交
114
    gc_->Add(std::move(*garbages));
S
sneaxiy 已提交
115 116 117 118 119 120 121 122
#ifdef PADDLE_WITH_CUDA
  }
#endif
}

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