system_allocator_test.cc 1.6 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 19

#include <memory>
#include <vector>

20
#include "gflags/gflags.h"
L
liaogang 已提交
21 22
#include "gtest/gtest.h"

23
DECLARE_bool(use_pinned_memory);
24

25
void TestAllocator(paddle::memory::detail::SystemAllocator& a, size_t size) {
26 27
  bool freed = false;
  {
L
liaogang 已提交
28 29
    size_t index;
    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;
L
liaogang 已提交
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;
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;
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);
62 63
  TestAllocator(a, 2048);
  TestAllocator(a, 0);
L
liaogang 已提交
64
}
L
Luo Tao 已提交
65
#endif