mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-07-01 21:04:07 -04: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
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
// Copyright 2015 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "benchmark/benchmark.h"
|
|
#include "timers.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
#include <tuple>
|
|
#include <vector>
|
|
|
|
#include "check.h"
|
|
|
|
namespace benchmark {
|
|
|
|
BenchmarkReporter::BenchmarkReporter()
|
|
: output_stream_(&std::cout), error_stream_(&std::cerr) {}
|
|
|
|
BenchmarkReporter::~BenchmarkReporter() {}
|
|
|
|
void BenchmarkReporter::PrintBasicContext(std::ostream *out,
|
|
Context const &context) {
|
|
CHECK(out) << "cannot be null";
|
|
auto &Out = *out;
|
|
|
|
Out << LocalDateTimeString() << "\n";
|
|
|
|
if (context.executable_name)
|
|
Out << "Running " << context.executable_name << "\n";
|
|
|
|
const CPUInfo &info = context.cpu_info;
|
|
Out << "Run on (" << info.num_cpus << " X "
|
|
<< (info.cycles_per_second / 1000000.0) << " MHz CPU "
|
|
<< ((info.num_cpus > 1) ? "s" : "") << ")\n";
|
|
if (info.caches.size() != 0) {
|
|
Out << "CPU Caches:\n";
|
|
for (auto &CInfo : info.caches) {
|
|
Out << " L" << CInfo.level << " " << CInfo.type << " "
|
|
<< (CInfo.size / 1000) << "K";
|
|
if (CInfo.num_sharing != 0)
|
|
Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")";
|
|
Out << "\n";
|
|
}
|
|
}
|
|
|
|
if (info.scaling_enabled) {
|
|
Out << "***WARNING*** CPU scaling is enabled, the benchmark "
|
|
"real time measurements may be noisy and will incur extra "
|
|
"overhead.\n";
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
Out << "***WARNING*** Library was built as DEBUG. Timings may be "
|
|
"affected.\n";
|
|
#endif
|
|
}
|
|
|
|
// No initializer because it's already initialized to NULL.
|
|
const char* BenchmarkReporter::Context::executable_name;
|
|
|
|
BenchmarkReporter::Context::Context() : cpu_info(CPUInfo::Get()) {}
|
|
|
|
double BenchmarkReporter::Run::GetAdjustedRealTime() const {
|
|
double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit);
|
|
if (iterations != 0) new_time /= static_cast<double>(iterations);
|
|
return new_time;
|
|
}
|
|
|
|
double BenchmarkReporter::Run::GetAdjustedCPUTime() const {
|
|
double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit);
|
|
if (iterations != 0) new_time /= static_cast<double>(iterations);
|
|
return new_time;
|
|
}
|
|
|
|
} // end namespace benchmark
|