
This patch adds benchmarks for all the remaining algorithms in [alg.modifying.operations] that we didn't already have a benchmark for.
67 lines
2.3 KiB
C++
67 lines
2.3 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 <deque>
|
|
#include <iterator>
|
|
#include <list>
|
|
#include <random>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "benchmark/benchmark.h"
|
|
#include "../../GenerateInput.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
auto std_sample = [](auto first, auto last, auto out, auto n, auto& rng) {
|
|
return std::sample(first, last, out, n, rng);
|
|
};
|
|
|
|
// {std,ranges}::sample(normal container)
|
|
{
|
|
auto bm = []<class Container>(std::string name, auto sample) {
|
|
benchmark::RegisterBenchmark(
|
|
name,
|
|
[sample](auto& st) {
|
|
std::size_t const size = st.range(0);
|
|
using ValueType = typename Container::value_type;
|
|
Container c;
|
|
std::generate_n(std::back_inserter(c), size, [] { return Generate<ValueType>::random(); });
|
|
|
|
std::vector<ValueType> out(size);
|
|
auto const n = size / 4; // sample 1/4 of the range
|
|
std::mt19937 rng;
|
|
|
|
for ([[maybe_unused]] auto _ : st) {
|
|
benchmark::DoNotOptimize(c);
|
|
benchmark::DoNotOptimize(out);
|
|
auto result = sample(c.begin(), c.end(), out.begin(), n, rng);
|
|
benchmark::DoNotOptimize(result);
|
|
}
|
|
})
|
|
->Arg(32)
|
|
->Arg(1024)
|
|
->Arg(8192);
|
|
};
|
|
bm.operator()<std::vector<int>>("std::sample(vector<int>)", std_sample);
|
|
bm.operator()<std::deque<int>>("std::sample(deque<int>)", std_sample);
|
|
bm.operator()<std::list<int>>("std::sample(list<int>)", std_sample);
|
|
bm.operator()<std::vector<int>>("rng::sample(vector<int>)", std::ranges::sample);
|
|
bm.operator()<std::deque<int>>("rng::sample(deque<int>)", std::ranges::sample);
|
|
bm.operator()<std::list<int>>("rng::sample(list<int>)", std::ranges::sample);
|
|
}
|
|
|
|
benchmark::Initialize(&argc, argv);
|
|
benchmark::RunSpecifiedBenchmarks();
|
|
benchmark::Shutdown();
|
|
return 0;
|
|
}
|