retry_allocator.h 1.9 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 {

Y
Yu Yang 已提交
28
class RetryAllocator : public Allocator {
Y
Yu Yang 已提交
29
 public:
Z
Zeng Jinle 已提交
30
  RetryAllocator(std::shared_ptr<Allocator> allocator, size_t retry_ms)
Y
Yu Yang 已提交
31
      : underlying_allocator_(std::move(allocator)), retry_time_(retry_ms) {
S
sneaxiy 已提交
32
    PADDLE_ENFORCE_NOT_NULL(
Z
Zeng Jinle 已提交
33 34
        underlying_allocator_,
        "UnderlyingAllocator of RetryAllocator must not be null");
S
sneaxiy 已提交
35 36 37 38
    PADDLE_ENFORCE(underlying_allocator_->IsAllocThreadSafe(),
                   "UnderlyingAllocator of RetryAllocator must be thread-safe");
  }

Z
Zeng Jinle 已提交
39 40
  bool IsAllocThreadSafe() const override { return true; }

Y
Yu Yang 已提交
41
 protected:
Z
Zeng Jinle 已提交
42
  void FreeImpl(Allocation* allocation) override;
43
  Allocation* AllocateImpl(size_t size) override;
Y
Yu Yang 已提交
44 45

 private:
Z
Zeng Jinle 已提交
46
  std::shared_ptr<Allocator> underlying_allocator_;
S
sneaxiy 已提交
47 48 49 50 51 52 53 54 55 56 57 58
  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};
};

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