Testing a bunch of range sizes has relatively little value. This reduces the number of benchmarks so we can run them on a regular basis. This saves ~10 minutes when running benchmarks. Fixes #179698
61 lines
2.0 KiB
C++
61 lines
2.0 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 <cassert>
|
|
#include <deque>
|
|
#include <list>
|
|
#include <vector>
|
|
|
|
#include "test_macros.h"
|
|
#include <benchmark/benchmark.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
auto bm = []<class Container>(std::type_identity<Container>, std::string name) {
|
|
benchmark::RegisterBenchmark(
|
|
name,
|
|
[](benchmark::State& state) {
|
|
Container vec(state.range(), 3);
|
|
|
|
for (auto _ : state) {
|
|
benchmark::DoNotOptimize(vec);
|
|
benchmark::DoNotOptimize(std::ranges::minmax(vec));
|
|
}
|
|
})
|
|
->Arg(1)
|
|
->Arg(8)
|
|
->Arg(64)
|
|
->Arg(70000);
|
|
};
|
|
|
|
bm(std::type_identity<std::vector<char>>(), "ranges::minmax(std::vector<char>)");
|
|
bm(std::type_identity<std::vector<long long>>(), "ranges::minmax(std::vector<long long>)");
|
|
#ifndef TEST_HAS_NO_INT128
|
|
bm(std::type_identity<std::vector<__int128>>(), "ranges::minmax(std::vector<__int128>)");
|
|
#endif
|
|
|
|
bm(std::type_identity<std::deque<char>>(), "ranges::minmax(std::deque<char>)");
|
|
bm(std::type_identity<std::deque<long long>>(), "ranges::minmax(std::deque<long long>)");
|
|
#ifndef TEST_HAS_NO_INT128
|
|
bm(std::type_identity<std::deque<__int128>>(), "ranges::minmax(std::deque<__int128>)");
|
|
#endif
|
|
|
|
bm(std::type_identity<std::list<char>>(), "ranges::minmax(std::list<char>)");
|
|
bm(std::type_identity<std::list<long long>>(), "ranges::minmax(std::list<long long>)");
|
|
#ifndef TEST_HAS_NO_INT128
|
|
bm(std::type_identity<std::list<__int128>>(), "ranges::minmax(std::list<__int128>)");
|
|
#endif
|
|
|
|
benchmark::Initialize(&argc, argv);
|
|
benchmark::RunSpecifiedBenchmarks();
|
|
benchmark::Shutdown();
|
|
return 0;
|
|
}
|