mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
0f55045526
This patch pulls google/benchmark v1.4.1 into the LLVM tree so that any project could use it for benchmark generation. A dummy benchmark is added to `llvm/benchmarks/DummyYAML.cpp` to validate the correctness of the build process. The current version does not utilize LLVM LNT and LLVM CMake infrastructure, but that might be sufficient for most users. Two introduced CMake variables: * `LLVM_INCLUDE_BENCHMARKS` (`ON` by default) generates benchmark targets * `LLVM_BUILD_BENCHMARKS` (`OFF` by default) adds generated benchmark targets to the list of default LLVM targets (i.e. if `ON` benchmarks will be built upon standard build invocation, e.g. `ninja` or `make` with no specific targets) List of modifications: * `BENCHMARK_ENABLE_TESTING` is disabled * `BENCHMARK_ENABLE_EXCEPTIONS` is disabled * `BENCHMARK_ENABLE_INSTALL` is disabled * `BENCHMARK_ENABLE_GTEST_TESTS` is disabled * `BENCHMARK_DOWNLOAD_DEPENDENCIES` is disabled Original discussion can be found here: http://lists.llvm.org/pipermail/llvm-dev/2018-August/125023.html Reviewed by: dberris, lebedev.ri Subscribers: ilya-biryukov, ioeric, EricWF, lebedev.ri, srhines, dschuff, mgorny, krytarowski, fedor.sergeev, mgrang, jfb, llvm-commits Differential Revision: https://reviews.llvm.org/D50894 llvm-svn: 340809
98 lines
2.7 KiB
C++
98 lines
2.7 KiB
C++
#include "benchmark/benchmark.h"
|
|
|
|
#include <cassert>
|
|
#include <iostream>
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
class MultipleRangesFixture : public ::benchmark::Fixture {
|
|
public:
|
|
MultipleRangesFixture()
|
|
: expectedValues({{1, 3, 5},
|
|
{1, 3, 8},
|
|
{1, 3, 15},
|
|
{2, 3, 5},
|
|
{2, 3, 8},
|
|
{2, 3, 15},
|
|
{1, 4, 5},
|
|
{1, 4, 8},
|
|
{1, 4, 15},
|
|
{2, 4, 5},
|
|
{2, 4, 8},
|
|
{2, 4, 15},
|
|
{1, 7, 5},
|
|
{1, 7, 8},
|
|
{1, 7, 15},
|
|
{2, 7, 5},
|
|
{2, 7, 8},
|
|
{2, 7, 15},
|
|
{7, 6, 3}}) {}
|
|
|
|
void SetUp(const ::benchmark::State& state) {
|
|
std::vector<int64_t> ranges = {state.range(0), state.range(1),
|
|
state.range(2)};
|
|
|
|
assert(expectedValues.find(ranges) != expectedValues.end());
|
|
|
|
actualValues.insert(ranges);
|
|
}
|
|
|
|
// NOTE: This is not TearDown as we want to check after _all_ runs are
|
|
// complete.
|
|
virtual ~MultipleRangesFixture() {
|
|
assert(actualValues.size() == expectedValues.size());
|
|
if (actualValues.size() != expectedValues.size()) {
|
|
std::cout << "EXPECTED\n";
|
|
for (auto v : expectedValues) {
|
|
std::cout << "{";
|
|
for (int64_t iv : v) {
|
|
std::cout << iv << ", ";
|
|
}
|
|
std::cout << "}\n";
|
|
}
|
|
std::cout << "ACTUAL\n";
|
|
for (auto v : actualValues) {
|
|
std::cout << "{";
|
|
for (int64_t iv : v) {
|
|
std::cout << iv << ", ";
|
|
}
|
|
std::cout << "}\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
std::set<std::vector<int64_t>> expectedValues;
|
|
std::set<std::vector<int64_t>> actualValues;
|
|
};
|
|
|
|
BENCHMARK_DEFINE_F(MultipleRangesFixture, Empty)(benchmark::State& state) {
|
|
for (auto _ : state) {
|
|
int64_t product = state.range(0) * state.range(1) * state.range(2);
|
|
for (int64_t x = 0; x < product; x++) {
|
|
benchmark::DoNotOptimize(x);
|
|
}
|
|
}
|
|
}
|
|
|
|
BENCHMARK_REGISTER_F(MultipleRangesFixture, Empty)
|
|
->RangeMultiplier(2)
|
|
->Ranges({{1, 2}, {3, 7}, {5, 15}})
|
|
->Args({7, 6, 3});
|
|
|
|
void BM_CheckDefaultArgument(benchmark::State& state) {
|
|
// Test that the 'range()' without an argument is the same as 'range(0)'.
|
|
assert(state.range() == state.range(0));
|
|
assert(state.range() != state.range(1));
|
|
for (auto _ : state) {
|
|
}
|
|
}
|
|
BENCHMARK(BM_CheckDefaultArgument)->Ranges({{1, 5}, {6, 10}});
|
|
|
|
static void BM_MultipleRanges(benchmark::State& st) {
|
|
for (auto _ : st) {
|
|
}
|
|
}
|
|
BENCHMARK(BM_MultipleRanges)->Ranges({{5, 5}, {6, 6}});
|
|
|
|
BENCHMARK_MAIN();
|