-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlru_cache_benchmark.cpp
125 lines (88 loc) · 2.59 KB
/
lru_cache_benchmark.cpp
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
// Copyright (c) Omar Boukli-Hacene. All rights reserved.
// Distributed under an MIT-style license that can be
// found in the LICENSE file.
// SPDX-License-Identifier: MIT
#include <cstddef>
#include <format>
#include <catch2/catch_test_macros.hpp>
#include <nanobench.h>
#include "forfun/lru_cache.hpp"
namespace {
template <forfun::lrucache::concepts::lru_cache T>
auto wrapper(std::size_t const capacity) noexcept -> int
{
T cache(capacity);
int x{0};
for (std::size_t i{0U}; i < capacity; ++i)
{
cache.put(i, x);
++x;
}
int val{cache.get(1U)};
val = cache.get(2U);
val = cache.get(3U);
cache.put(capacity + 1, 2'946'901);
val = cache.get(1U);
val = cache.get(4U);
val = cache.get(2U);
cache.put(5U, 5);
val = cache.get(3U);
for (std::size_t i{0U}; i < capacity; ++i)
{
val = cache.get(i);
}
return val;
}
} // namespace
TEST_CASE("LRU cache benchmarking", "[benchmark][lrucache]")
{
using namespace forfun::lrucache;
SECTION("small")
{
static constexpr int const lrucache_capacity{32};
ankerl::nanobench::Bench()
.title(
std::format("LRU cache with {} cache items", lrucache_capacity)
)
.relative(true)
.run(
"stl::LRUCache",
[]() noexcept(false) {
int val{wrapper<stl::LRUCache>(lrucache_capacity)};
ankerl::nanobench::doNotOptimizeAway(val);
}
)
.run(
"naive::LRUCache",
[]() noexcept(false) {
int val{wrapper<naive::LRUCache>(lrucache_capacity)};
ankerl::nanobench::doNotOptimizeAway(val);
}
)
;
}
SECTION("large")
{
static constexpr int const lrucache_capacity{128};
ankerl::nanobench::Bench()
.title(
std::format("LRU cache with {} cache items", lrucache_capacity)
)
.relative(true)
.run(
"stl::LRUCache",
[]() noexcept {
int val{wrapper<stl::LRUCache>(lrucache_capacity)};
ankerl::nanobench::doNotOptimizeAway(val);
}
)
.run(
"naive::LRUCache",
[]() noexcept {
int val{wrapper<naive::LRUCache>(lrucache_capacity)};
ankerl::nanobench::doNotOptimizeAway(val);
}
)
;
}
}