retry_allocator_test.cc 4.0 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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/memory/allocation/retry_allocator.h"
L
Leo Chen 已提交
16

17
#include <thread>  // NOLINT
18

S
sneaxiy 已提交
19 20 21
#include "gtest/gtest.h"
#include "paddle/fluid/memory/allocation/best_fit_allocator.h"
#include "paddle/fluid/memory/allocation/cpu_allocator.h"
22
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
23 24
#include "paddle/fluid/memory/allocation/cuda_allocator.h"
#endif
S
sneaxiy 已提交
25 26 27 28 29 30 31 32 33

namespace paddle {
namespace memory {
namespace allocation {

TEST(RetryAllocator, RetryAllocator) {
  CPUAllocator cpu_allocator;

  size_t size = (1 << 20);
34
  auto cpu_allocation = cpu_allocator.Allocate(size);
S
sneaxiy 已提交
35

36
  size_t thread_num = 4;
S
sneaxiy 已提交
37
  size_t sleep_time = 40;
L
Leo Chen 已提交
38
  size_t extra_time = 20;
S
sneaxiy 已提交
39 40

  // Reserve to perform more tests in the future
Y
Yu Yang 已提交
41
  std::vector<std::shared_ptr<Allocator>> allocators;
S
sneaxiy 已提交
42 43 44
  {
    std::unique_ptr<BestFitAllocator> best_fit_allocator(
        new BestFitAllocator(cpu_allocation.get()));
Y
Yu Yang 已提交
45
    allocators.push_back(std::make_shared<RetryAllocator>(
46
        std::move(best_fit_allocator),
Y
Yu Yang 已提交
47
        (thread_num - 1) * (sleep_time + extra_time)));
S
sneaxiy 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
  }

  for (auto &allocator : allocators) {
    std::vector<std::thread> threads(thread_num);
    std::vector<void *> addresses(threads.size(), nullptr);

    std::mutex mutex;
    std::condition_variable cv;
    bool flag = false;

    for (size_t i = 0; i < threads.size(); ++i) {
      threads[i] = std::thread([&, i]() {
        {
          std::unique_lock<std::mutex> lock(mutex);
          cv.wait(lock, [&] { return flag; });
        }

        auto ret = allocator->Allocate(size - 1);
        addresses[i] = ret->ptr();
        std::this_thread::sleep_for(std::chrono::milliseconds(sleep_time));
      });
    }

    {
      std::lock_guard<std::mutex> lock(mutex);
      flag = true;
      cv.notify_all();
    }

    for (auto &th : threads) {
      th.join();
    }

    void *val = cpu_allocation->ptr();
82 83
    bool is_all_equal = std::all_of(addresses.begin(),
                                    addresses.end(),
S
sneaxiy 已提交
84 85
                                    [val](void *p) { return p == val; });
    ASSERT_TRUE(is_all_equal);
86
    allocator->Release(platform::CPUPlace());
S
sneaxiy 已提交
87 88 89
  }
}

90 91 92 93 94
class DummyAllocator : public Allocator {
 public:
  bool IsAllocThreadSafe() const override { return true; }

 protected:
95
  phi::Allocation *AllocateImpl(size_t size) override {
96 97
    PADDLE_THROW_BAD_ALLOC(platform::errors::ResourceExhausted(
        "Here is a test exception, always BadAlloc."));
98 99
  }

100
  void FreeImpl(phi::Allocation *) override {}
101 102 103 104 105 106 107 108 109 110 111
};

TEST(RetryAllocator, RetryAllocatorLastAllocFailure) {
  size_t retry_ms = 10;
  {
    RetryAllocator allocator(std::make_shared<DummyAllocator>(), retry_ms);
    try {
      auto allocation = allocator.Allocate(100);
      ASSERT_TRUE(false);
      allocation.reset();
    } catch (BadAlloc &ex) {
112
      ASSERT_TRUE(std::string(ex.what()).find("always BadAlloc") !=
113 114 115 116
                  std::string::npos);
    }
  }

117
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
118 119 120
  {
    platform::CUDAPlace p(0);
    RetryAllocator allocator(std::make_shared<CUDAAllocator>(p), retry_ms);
121
    size_t allocate_size = (static_cast<size_t>(1) << 40);  // Very large number
122 123 124 125
    try {
      auto allocation = allocator.Allocate(allocate_size);
      ASSERT_TRUE(false);
      allocation.reset();
126
      allocator.Release(p);
127
    } catch (BadAlloc &ex) {
128
      ASSERT_TRUE(std::string(ex.what()).find("Cannot allocate") !=
129 130 131 132 133 134
                  std::string::npos);
    }
  }
#endif
}

S
sneaxiy 已提交
135 136 137
}  // namespace allocation
}  // namespace memory
}  // namespace paddle