eager_deletion_op_handle.h 2.5 KB
Newer Older
S
sneaxiy 已提交
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.

#pragma once

S
sneaxiy 已提交
17
#include <deque>
Z
Zeng Jinle 已提交
18
#include <memory>
S
sneaxiy 已提交
19
#include <string>
Z
Zeng Jinle 已提交
20 21
#include <unordered_set>
#include <vector>
W
wanghuancoder 已提交
22

S
sneaxiy 已提交
23
#include "paddle/fluid/framework/details/op_handle_base.h"
24
#include "paddle/fluid/framework/ir/memory_optimize_pass/reference_count_pass_helper.h"
S
sneaxiy 已提交
25

W
wanghuancoder 已提交
26 27 28 29 30 31
namespace paddle {
namespace platform {
class CUDADeviceContext;
}  // namespace platform
}  // namespace paddle

S
sneaxiy 已提交
32 33
namespace paddle {
namespace framework {
W
wanghuancoder 已提交
34
class GarbageCollector;
35 36
class Scope;

W
wanghuancoder 已提交
37 38 39
namespace ir {
class Node;
}  // namespace ir
S
sneaxiy 已提交
40

41 42 43 44
namespace ir {
class MemOptVarInfo;
}  // namespace ir

S
sneaxiy 已提交
45 46 47 48
namespace details {

class EagerDeletionOpHandle : public OpHandleBase {
 public:
49
  EagerDeletionOpHandle(ir::Node *node, Scope *scope, size_t scope_idx,
S
sneaxiy 已提交
50
                        const platform::Place &place,
51 52
                        const std::unordered_set<ir::MemOptVarInfo *> &vars,
                        GarbageCollector *gc);
S
sneaxiy 已提交
53 54 55 56 57

  ~EagerDeletionOpHandle();

  std::string Name() const override;

Z
Zeng Jinle 已提交
58 59 60 61 62 63 64
  /**
   * Currently, EagerDeletionOpHandle has the highest priority.
   * This priority settings speed up gc 15% in Transformer
   * V100 8-GPU model.
   */
  Priority GetPriority() const override { return kHighest; }

65 66
  size_t GetScopeIdx() const { return scope_idx_; }

Z
Zeng Jinle 已提交
67 68
  std::vector<std::string> VarsToDelete() const;

S
sneaxiy 已提交
69 70 71
 protected:
  void RunImpl() override;

72 73 74 75
  void InitCUDA() override;

  std::vector<Scope *> GetLocalScopes() override { return {scope_}; }

S
sneaxiy 已提交
76
 private:
S
sneaxiy 已提交
77
  void ClearGarbages(std::deque<std::shared_ptr<memory::Allocation>> *garbages);
S
sneaxiy 已提交
78

79 80 81
  void CallOnce();

  Scope *scope_;
82
  size_t scope_idx_;
83 84 85 86
  platform::Place place_;
  std::vector<ir::MemOptVarInfo *> var_infos_;  // not own
  GarbageCollector *gc_;                        // not own
  std::vector<Variable *> vars_;
87
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
S
sneaxiy 已提交
88
  platform::CUDADeviceContext *dev_ctx_{nullptr};
89
  gpuEvent_t event_{nullptr};
S
sneaxiy 已提交
90 91 92 93 94 95
#endif
};

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