retry_allocator.h 2.0 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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

#include <chrono>              // NOLINT
#include <condition_variable>  // NOLINT
#include <memory>
#include <mutex>  // NOLINT
S
sneaxiy 已提交
21
#include <utility>
S
sneaxiy 已提交
22 23 24 25 26 27
#include "paddle/fluid/memory/allocation/allocator.h"

namespace paddle {
namespace memory {
namespace allocation {

Z
Zeng Jinle 已提交
28 29
class RetryAllocator;

Y
Yu Yang 已提交
30
class RetryAllocator : public Allocator {
Y
Yu Yang 已提交
31
 public:
Z
Zeng Jinle 已提交
32
  RetryAllocator(std::unique_ptr<Allocator>&& allocator, size_t retry_ms)
Y
Yu Yang 已提交
33
      : underlying_allocator_(std::move(allocator)), retry_time_(retry_ms) {
Z
Zeng Jinle 已提交
34 35 36 37 38 39 40
    EnforceCheck();
  }

  bool IsAllocThreadSafe() const override;

 private:
  void EnforceCheck() {
S
sneaxiy 已提交
41
    PADDLE_ENFORCE_NOT_NULL(
Z
Zeng Jinle 已提交
42 43
        underlying_allocator_.get(),
        "UnderlyingAllocator of RetryAllocator must be UnmanagedAllocator");
S
sneaxiy 已提交
44 45 46 47
    PADDLE_ENFORCE(underlying_allocator_->IsAllocThreadSafe(),
                   "UnderlyingAllocator of RetryAllocator must be thread-safe");
  }

Y
Yu Yang 已提交
48
 protected:
Z
Zeng Jinle 已提交
49
  void Free(Allocation* allocation) override;
Y
Yu Yang 已提交
50
  Allocation* AllocateImpl(size_t size, Allocator::Attr attr) override;
Y
Yu Yang 已提交
51 52

 private:
Z
Zeng Jinle 已提交
53
  std::unique_ptr<Allocator> underlying_allocator_;
S
sneaxiy 已提交
54 55 56 57 58 59 60
  std::chrono::milliseconds retry_time_;
  std::mutex mutex_;
  std::condition_variable cv_;

  // For debug, We can add an atomic integer to record how many memory sizes are
  // waited to allocate
  // std::atomic<size_t> waited_allocate_size_{0};
Z
Zeng Jinle 已提交
61 62

  friend class RetryAllocation;
S
sneaxiy 已提交
63 64 65 66 67
};

}  // namespace allocation
}  // namespace memory
}  // namespace paddle