-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Stephan T. Lavavej <[email protected]>
- Loading branch information
1 parent
6f31505
commit 61cc2a5
Showing
4 changed files
with
129 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#include <algorithm> | ||
#include <benchmark/benchmark.h> | ||
#include <cstddef> | ||
#include <cstdint> | ||
#include <cstdio> | ||
#include <queue> | ||
#include <random> | ||
#include <span> | ||
#include <string> | ||
#include <string_view> | ||
#include <vector> | ||
using namespace std; | ||
|
||
namespace { | ||
constexpr size_t vec_size = 10'000; | ||
|
||
template <class T, class Fn> | ||
auto create_vec(Fn transformation) { | ||
vector<T> vec(vec_size); | ||
for (mt19937_64 rnd(1); auto& e : vec) { | ||
e = transformation(rnd()); | ||
} | ||
return vec; | ||
} | ||
|
||
template <class T> | ||
T cast_to(uint64_t val) { | ||
return static_cast<T>(val); | ||
} | ||
|
||
const auto vec_u8 = create_vec<uint8_t>(cast_to<uint8_t>); | ||
const auto vec_u16 = create_vec<uint16_t>(cast_to<uint16_t>); | ||
const auto vec_u32 = create_vec<uint32_t>(cast_to<uint32_t>); | ||
const auto vec_u64 = create_vec<uint64_t>(cast_to<uint64_t>); | ||
const auto vec_float = create_vec<float>(cast_to<float>); | ||
const auto vec_double = create_vec<double>(cast_to<double>); | ||
|
||
const auto vec_str = create_vec<string>([](uint64_t val) { return to_string(static_cast<uint32_t>(val)); }); | ||
const auto vec_wstr = create_vec<wstring>([](uint64_t val) { return to_wstring(static_cast<uint32_t>(val)); }); | ||
|
||
template <class T, const auto& Data> | ||
void BM_push_range(benchmark::State& state) { | ||
const size_t frag_size = static_cast<size_t>(state.range(0)); | ||
|
||
for (auto _ : state) { | ||
priority_queue<T> que; | ||
span spn{Data}; | ||
|
||
while (!spn.empty()) { | ||
const size_t take_size = min(spn.size(), frag_size); | ||
que.push_range(spn.first(take_size)); | ||
spn = spn.subspan(take_size); | ||
} | ||
benchmark::DoNotOptimize(que); | ||
} | ||
} | ||
|
||
template <size_t L> | ||
void putln(const benchmark::State&) { | ||
static bool b = [] { | ||
puts(""); | ||
return true; | ||
}(); | ||
} | ||
} // namespace | ||
|
||
#define TEST_PUSH_RANGE(T, source) \ | ||
BENCHMARK(BM_push_range<T, source>) \ | ||
->Setup(putln<__LINE__>) \ | ||
->RangeMultiplier(100) \ | ||
->Range(1, vec_size) \ | ||
->Arg(vec_size / 2 + 1); | ||
|
||
TEST_PUSH_RANGE(uint8_t, vec_u8); | ||
TEST_PUSH_RANGE(uint16_t, vec_u16); | ||
TEST_PUSH_RANGE(uint32_t, vec_u32); | ||
TEST_PUSH_RANGE(uint64_t, vec_u64); | ||
TEST_PUSH_RANGE(float, vec_float); | ||
TEST_PUSH_RANGE(double, vec_double); | ||
|
||
TEST_PUSH_RANGE(string_view, vec_str); | ||
TEST_PUSH_RANGE(string, vec_str); | ||
TEST_PUSH_RANGE(wstring_view, vec_wstr); | ||
TEST_PUSH_RANGE(wstring, vec_wstr); | ||
|
||
BENCHMARK_MAIN(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters