system_allocator_test.cc 2.2 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
L
liaogang 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/memory/detail/system_allocator.h"
Y
Yi Wang 已提交
16 17 18

#include <memory>

19
#include "gflags/gflags.h"
L
liaogang 已提交
20
#include "gtest/gtest.h"
21
#include "paddle/fluid/memory/allocation/allocator.h"
L
liaogang 已提交
22

23
DECLARE_bool(use_pinned_memory);
24

Y
Yi Wang 已提交
25
void TestAllocator(paddle::memory::detail::SystemAllocator* a, size_t size) {
26 27
  bool freed = false;
  {
L
liaogang 已提交
28
    size_t index;
Y
Update  
Yi Wang 已提交
29
    void* p = a->Alloc(&index, size);
30 31 32 33 34
    if (size > 0) {
      EXPECT_NE(p, nullptr);
    } else {
      EXPECT_EQ(p, nullptr);
    }
35

36
    int* i = static_cast<int*>(p);
37
    std::shared_ptr<int> ptr(i, [&](void* p) {
38
      freed = true;
Y
Yi Wang 已提交
39
      a->Free(p, size, index);
40 41 42
    });
  }
  EXPECT_TRUE(freed);
43 44
}

Y
Yi Wang 已提交
45
TEST(CPUAllocator, NoLockMem) {
46 47
  FLAGS_use_pinned_memory = false;
  paddle::memory::detail::CPUAllocator a;
Y
Yi Wang 已提交
48 49
  TestAllocator(&a, 2048);
  TestAllocator(&a, 0);
Y
Yi Wang 已提交
50
}
51

52
TEST(CPUAllocator, LockMem) {
53 54
  FLAGS_use_pinned_memory = true;
  paddle::memory::detail::CPUAllocator a;
Y
Yi Wang 已提交
55 56
  TestAllocator(&a, 2048);
  TestAllocator(&a, 0);
57 58
}

59
#ifdef PADDLE_WITH_CUDA
L
liaogang 已提交
60
TEST(GPUAllocator, Alloc) {
Y
Yu Yang 已提交
61
  paddle::memory::detail::GPUAllocator a(0);
Y
Yi Wang 已提交
62 63
  TestAllocator(&a, 2048);
  TestAllocator(&a, 0);
L
liaogang 已提交
64
}
65 66 67 68 69 70

TEST(CUDAPinnedAllocator, Alloc) {
  paddle::memory::detail::CUDAPinnedAllocator a;
  TestAllocator(&a, 2048);
  TestAllocator(&a, 0);
}
71 72 73 74

TEST(GPUAllocator, AllocFailure) {
  paddle::memory::detail::GPUAllocator allocator(0);
  size_t index;
75
  size_t alloc_size = (static_cast<size_t>(1) << 40);  // Very large number
76 77 78 79 80 81 82
  try {
    allocator.Alloc(&index, alloc_size);
    ASSERT_TRUE(false);
  } catch (paddle::memory::allocation::BadAlloc&) {
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaGetLastError());
  }
}
L
Luo Tao 已提交
83
#endif