-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlast_stone_weight_benchmark.cpp
102 lines (87 loc) · 3.84 KB
/
last_stone_weight_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
// 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 <utility>
#include <vector>
#include <catch2/catch_test_macros.hpp>
#include <nanobench.h>
#include <nameof.hpp>
#include "forfun/last_stone_weight.hpp"
TEST_CASE("Last stone weight benchmarking", "[benchmark][last_stone_weight]")
{
using namespace forfun::last_stone_weight;
using Iter = std::vector<int>::iterator;
ankerl::nanobench::Bench()
.title("Last stone weight")
.relative(true)
.run(
NAMEOF_RAW(naive::last_stone_weight<Iter, Iter>).c_str(),
[]() noexcept {
std::vector stones{
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31,
37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79,
83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137,
139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193,
197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257,
263, 269, 271, 277, 281, 283, 293, 307, 311,
};
auto const volatile r{
naive::last_stone_weight(stones.begin(), stones.end())
};
ankerl::nanobench::doNotOptimizeAway(&r);
}
)
.run(
NAMEOF_RAW(priority_queue_based::last_stone_weight).c_str(),
[]() noexcept {
std::vector stones{
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31,
37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79,
83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137,
139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193,
197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257,
263, 269, 271, 277, 281, 283, 293, 307, 311,
};
auto const volatile r{
priority_queue_based::last_stone_weight(std::move(stones))
};
ankerl::nanobench::doNotOptimizeAway(&r);
}
)
.run(
NAMEOF_RAW(heapified::last_stone_weight<Iter, Iter>).c_str(),
[]() noexcept {
std::vector stones{
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31,
37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79,
83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137,
139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193,
197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257,
263, 269, 271, 277, 281, 283, 293, 307, 311,
};
auto const volatile r{
heapified::last_stone_weight(stones.begin(), stones.end())
};
ankerl::nanobench::doNotOptimizeAway(&r);
}
)
.run(
NAMEOF_RAW(sort_based::last_stone_weight<Iter, Iter>).c_str(),
[]() noexcept {
std::vector stones{
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31,
37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79,
83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137,
139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193,
197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257,
263, 269, 271, 277, 281, 283, 293, 307, 311,
};
auto const volatile r{
sort_based::last_stone_weight(stones.begin(), stones.end())
};
ankerl::nanobench::doNotOptimizeAway(&r);
}
)
;
}