We're currently running all the algorithms benchmarks for the `std` and `ranges` variants, even though almost all the algorithms share the same code. This makes running the benchmarks on a large set of commits very slow and costly. This reduced running the `algorithm/` subdirectory from ~4 hours to roughtly 2.5 hours. Fixes #175973
157 lines
5.6 KiB
C++
157 lines
5.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++03, c++11, c++14, c++17
|
|
|
|
#include <algorithm>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <deque>
|
|
#include <list>
|
|
#include <map>
|
|
#include <ranges>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <vector>
|
|
|
|
#include <benchmark/benchmark.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
auto std_for_each = [](auto first, auto last, auto f) { return std::for_each(first, last, f); };
|
|
|
|
// {std,ranges}::for_each
|
|
{
|
|
auto bm = []<class Container>(std::string name, auto for_each) {
|
|
using ElemType = typename Container::value_type;
|
|
benchmark::RegisterBenchmark(
|
|
name,
|
|
[for_each](auto& st) {
|
|
std::size_t const size = st.range(0);
|
|
Container c(size, 1);
|
|
auto first = c.begin();
|
|
auto last = c.end();
|
|
|
|
for ([[maybe_unused]] auto _ : st) {
|
|
benchmark::DoNotOptimize(c);
|
|
auto result = for_each(first, last, [](ElemType& x) { x = std::clamp<ElemType>(x, 10, 100); });
|
|
benchmark::DoNotOptimize(result);
|
|
}
|
|
})
|
|
->Arg(8)
|
|
->Arg(32)
|
|
->Arg(50) // non power-of-two
|
|
->Arg(8192);
|
|
};
|
|
bm.operator()<std::vector<int>>("std::for_each(vector<int>)", std_for_each);
|
|
bm.operator()<std::deque<int>>("std::for_each(deque<int>)", std_for_each);
|
|
bm.operator()<std::list<int>>("std::for_each(list<int>)", std_for_each);
|
|
}
|
|
|
|
// std::{,range::}for_each for associative containers
|
|
{
|
|
auto iterator_bm = []<class Container, bool IsMapLike>(
|
|
std::type_identity<Container>, std::bool_constant<IsMapLike>, std::string name) {
|
|
benchmark::RegisterBenchmark(
|
|
name,
|
|
[](auto& st) {
|
|
Container c;
|
|
for (std::int64_t i = 0; i != st.range(0); ++i) {
|
|
if constexpr (IsMapLike)
|
|
c.emplace(i, i);
|
|
else
|
|
c.emplace(i);
|
|
}
|
|
|
|
for (auto _ : st) {
|
|
benchmark::DoNotOptimize(c);
|
|
std::for_each(c.begin(), c.end(), [](auto v) { benchmark::DoNotOptimize(&v); });
|
|
}
|
|
})
|
|
->Arg(8)
|
|
->Arg(32)
|
|
->Arg(50) // non power-of-two
|
|
->Arg(8192);
|
|
};
|
|
iterator_bm(std::type_identity<std::set<int>>{}, std::false_type{}, "std::for_each(set<int>::iterator)");
|
|
iterator_bm(std::type_identity<std::multiset<int>>{}, std::false_type{}, "std::for_each(multiset<int>::iterator)");
|
|
iterator_bm(std::type_identity<std::map<int, int>>{}, std::true_type{}, "std::for_each(map<int>::iterator)");
|
|
iterator_bm(
|
|
std::type_identity<std::multimap<int, int>>{}, std::true_type{}, "std::for_each(multimap<int>::iterator)");
|
|
|
|
auto container_bm = []<class Container, bool IsMapLike>(
|
|
std::type_identity<Container>, std::bool_constant<IsMapLike>, std::string name) {
|
|
benchmark::RegisterBenchmark(
|
|
name,
|
|
[](auto& st) {
|
|
Container c;
|
|
const std::size_t size = st.range(0);
|
|
|
|
for (std::size_t i = 0; i != size; ++i) {
|
|
if constexpr (IsMapLike)
|
|
c.emplace(i, i);
|
|
else
|
|
c.emplace(i);
|
|
}
|
|
|
|
for (auto _ : st) {
|
|
benchmark::DoNotOptimize(c);
|
|
std::ranges::for_each(c, [](auto v) { benchmark::DoNotOptimize(&v); });
|
|
}
|
|
})
|
|
->Arg(8)
|
|
->Arg(32)
|
|
->Arg(50) // non power-of-two
|
|
->Arg(8192);
|
|
};
|
|
container_bm(std::type_identity<std::set<int>>{}, std::false_type{}, "rng::for_each(set<int>)");
|
|
container_bm(std::type_identity<std::multiset<int>>{}, std::false_type{}, "rng::for_each(multiset<int>)");
|
|
container_bm(std::type_identity<std::map<int, int>>{}, std::true_type{}, "rng::for_each(map<int>)");
|
|
container_bm(std::type_identity<std::multimap<int, int>>{}, std::true_type{}, "rng::for_each(multimap<int>)");
|
|
}
|
|
|
|
// {std,ranges}::for_each for join_view
|
|
{
|
|
auto bm = []<class Container>(std::string name, auto for_each) {
|
|
using C1 = typename Container::value_type;
|
|
using ElemType = typename C1::value_type;
|
|
|
|
benchmark::RegisterBenchmark(
|
|
name,
|
|
[for_each](auto& st) {
|
|
std::size_t const size = st.range(0);
|
|
std::size_t const seg_size = 256;
|
|
std::size_t const segments = (size + seg_size - 1) / seg_size;
|
|
Container c(segments);
|
|
for (std::size_t i = 0, n = size; i < segments; ++i, n -= seg_size) {
|
|
c[i].resize(std::min(seg_size, n), ElemType(1));
|
|
}
|
|
|
|
auto view = c | std::views::join;
|
|
auto first = view.begin();
|
|
auto last = view.end();
|
|
|
|
for ([[maybe_unused]] auto _ : st) {
|
|
benchmark::DoNotOptimize(c);
|
|
auto result = for_each(first, last, [](ElemType& x) { x = std::clamp<ElemType>(x, 10, 100); });
|
|
benchmark::DoNotOptimize(result);
|
|
}
|
|
})
|
|
->Arg(8)
|
|
->Arg(32)
|
|
->Arg(50) // non power-of-two
|
|
->Arg(8192);
|
|
};
|
|
bm.operator()<std::vector<std::vector<int>>>("std::for_each(join_view(vector<vector<int>>))", std_for_each);
|
|
}
|
|
|
|
benchmark::Initialize(&argc, argv);
|
|
benchmark::RunSpecifiedBenchmarks();
|
|
benchmark::Shutdown();
|
|
return 0;
|
|
}
|