1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
// SPDX-License-Identifier: BSD-2-Clause
/* Copyright (C) 2016 - 2021 Intel Corporation. */
#include <sstream>
#include <vector>
#include "allocator_perf_tool/AllocatorFactory.hpp"
#include "allocator_perf_tool/Configuration.hpp"
#include "allocator_perf_tool/HugePageOrganizer.hpp"
#include "common.h"
// Test heap managers initialization performance.
class HeapManagerInitPerfTest: public ::testing::Test
{
protected:
void SetUp()
{
// Calculate reference statistics.
ref_time = allocator_factory
.initialize_allocator(AllocatorTypes::STANDARD_ALLOCATOR)
.total_time;
}
void TearDown()
{}
void run_test(unsigned allocator_type)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_DEFAULT);
post_test(stat);
}
void post_test(AllocatorFactory::initialization_stat &stat)
{
// Calculate (%) distance to the reference time for function calls.
stat.ref_delta_time =
allocator_factory.calc_ref_delta(ref_time, stat.total_time);
std::stringstream elapsed_time;
elapsed_time << stat.total_time;
std::stringstream ref_delta_time;
ref_delta_time << std::fixed << stat.ref_delta_time << std::endl;
RecordProperty("elapsed_time", elapsed_time.str());
RecordProperty("ref_delta_time_percent_rate", ref_delta_time.str());
for (int i = 0; i < stat.memory_overhead.size(); i++) {
std::stringstream node;
node << "memory_overhad_node_" << i;
std::stringstream memory_overhead;
memory_overhead << stat.memory_overhead[i];
RecordProperty(node.str(), memory_overhead.str());
}
}
AllocatorFactory allocator_factory;
float ref_time;
};
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_DEFAULT)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(AllocatorTypes::MEMKIND_DEFAULT);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_HBW)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(AllocatorTypes::MEMKIND_HBW);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_INTERLEAVE)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_INTERLEAVE);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_HBW_INTERLEAVE)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_HBW_INTERLEAVE);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_HBW_PREFERRED)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_HBW_PREFERRED);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_HUGETLB)
{
HugePageOrganizer huge_page_organizer(16);
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(AllocatorTypes::MEMKIND_HUGETLB);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_GBTLB)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(AllocatorTypes::MEMKIND_GBTLB);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_libinit_HBW_HUGETLB)
{
HugePageOrganizer huge_page_organizer(16);
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_HBW_HUGETLB);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest,
test_TC_MEMKIND_perf_libinit_HBW_PREFERRED_HUGETLB)
{
HugePageOrganizer huge_page_organizer(16);
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_HBW_PREFERRED_HUGETLB);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest, test_TC_MEMKIND_perf_ext_libinit_HBW_GBTLB)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_HBW_GBTLB);
post_test(stat);
}
TEST_F(HeapManagerInitPerfTest,
test_TC_MEMKIND_perf_libinit_HBW_PREFERRED_GBTLB)
{
AllocatorFactory::initialization_stat stat =
allocator_factory.initialize_allocator(
AllocatorTypes::MEMKIND_HBW_PREFERRED_GBTLB);
post_test(stat);
}
|