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 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
#include "paddle/fluid/platform/profiler.h"
S
sneaxiy 已提交
20
#ifdef PADDLE_WITH_CUDA
S
fix bug  
sneaxiy 已提交
21
#include "paddle/fluid/platform/cuda_device_guard.h"
S
sneaxiy 已提交
22
#endif
S
sneaxiy 已提交
23 24 25 26 27 28 29

namespace paddle {
namespace framework {
namespace details {

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

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

S
sneaxiy 已提交
62
std::string EagerDeletionOpHandle::Name() const { return "eager_deletion"; }
S
sneaxiy 已提交
63 64

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

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

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

S
sneaxiy 已提交
84 85
    VLOG(2) << "Erase variable " << name;

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

S
sneaxiy 已提交
102 103
  if (!garbages.empty()) {
    ClearGarbages(&garbages);
S
sneaxiy 已提交
104 105 106
  }
}

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

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