[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / third-party / benchmark / src / benchmark_register.cc
blob61a0c26178e3d480c8a9f3425b01de7992b556c7
1 // Copyright 2015 Google Inc. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 #include "benchmark_register.h"
17 #ifndef BENCHMARK_OS_WINDOWS
18 #ifndef BENCHMARK_OS_FUCHSIA
19 #include <sys/resource.h>
20 #endif
21 #include <sys/time.h>
22 #include <unistd.h>
23 #endif
25 #include <algorithm>
26 #include <atomic>
27 #include <cinttypes>
28 #include <condition_variable>
29 #include <cstdio>
30 #include <cstdlib>
31 #include <cstring>
32 #include <fstream>
33 #include <iostream>
34 #include <memory>
35 #include <numeric>
36 #include <sstream>
37 #include <thread>
39 #include "benchmark/benchmark.h"
40 #include "benchmark_api_internal.h"
41 #include "check.h"
42 #include "commandlineflags.h"
43 #include "complexity.h"
44 #include "internal_macros.h"
45 #include "log.h"
46 #include "mutex.h"
47 #include "re.h"
48 #include "statistics.h"
49 #include "string_util.h"
50 #include "timers.h"
52 namespace benchmark {
54 namespace {
55 // For non-dense Range, intermediate values are powers of kRangeMultiplier.
56 static const int kRangeMultiplier = 8;
57 // The size of a benchmark family determines is the number of inputs to repeat
58 // the benchmark on. If this is "large" then warn the user during configuration.
59 static const size_t kMaxFamilySize = 100;
60 } // end namespace
62 namespace internal {
64 //=============================================================================//
65 // BenchmarkFamilies
66 //=============================================================================//
68 // Class for managing registered benchmarks. Note that each registered
69 // benchmark identifies a family of related benchmarks to run.
70 class BenchmarkFamilies {
71 public:
72 static BenchmarkFamilies* GetInstance();
74 // Registers a benchmark family and returns the index assigned to it.
75 size_t AddBenchmark(std::unique_ptr<Benchmark> family);
77 // Clear all registered benchmark families.
78 void ClearBenchmarks();
80 // Extract the list of benchmark instances that match the specified
81 // regular expression.
82 bool FindBenchmarks(std::string re,
83 std::vector<BenchmarkInstance>* benchmarks,
84 std::ostream* Err);
86 private:
87 BenchmarkFamilies() {}
89 std::vector<std::unique_ptr<Benchmark>> families_;
90 Mutex mutex_;
93 BenchmarkFamilies* BenchmarkFamilies::GetInstance() {
94 static BenchmarkFamilies instance;
95 return &instance;
98 size_t BenchmarkFamilies::AddBenchmark(std::unique_ptr<Benchmark> family) {
99 MutexLock l(mutex_);
100 size_t index = families_.size();
101 families_.push_back(std::move(family));
102 return index;
105 void BenchmarkFamilies::ClearBenchmarks() {
106 MutexLock l(mutex_);
107 families_.clear();
108 families_.shrink_to_fit();
111 bool BenchmarkFamilies::FindBenchmarks(
112 std::string spec, std::vector<BenchmarkInstance>* benchmarks,
113 std::ostream* ErrStream) {
114 BM_CHECK(ErrStream);
115 auto& Err = *ErrStream;
116 // Make regular expression out of command-line flag
117 std::string error_msg;
118 Regex re;
119 bool isNegativeFilter = false;
120 if (spec[0] == '-') {
121 spec.replace(0, 1, "");
122 isNegativeFilter = true;
124 if (!re.Init(spec, &error_msg)) {
125 Err << "Could not compile benchmark re: " << error_msg << std::endl;
126 return false;
129 // Special list of thread counts to use when none are specified
130 const std::vector<int> one_thread = {1};
132 int next_family_index = 0;
134 MutexLock l(mutex_);
135 for (std::unique_ptr<Benchmark>& family : families_) {
136 int family_index = next_family_index;
137 int per_family_instance_index = 0;
139 // Family was deleted or benchmark doesn't match
140 if (!family) continue;
142 if (family->ArgsCnt() == -1) {
143 family->Args({});
145 const std::vector<int>* thread_counts =
146 (family->thread_counts_.empty()
147 ? &one_thread
148 : &static_cast<const std::vector<int>&>(family->thread_counts_));
149 const size_t family_size = family->args_.size() * thread_counts->size();
150 // The benchmark will be run at least 'family_size' different inputs.
151 // If 'family_size' is very large warn the user.
152 if (family_size > kMaxFamilySize) {
153 Err << "The number of inputs is very large. " << family->name_
154 << " will be repeated at least " << family_size << " times.\n";
156 // reserve in the special case the regex ".", since we know the final
157 // family size.
158 if (spec == ".") benchmarks->reserve(benchmarks->size() + family_size);
160 for (auto const& args : family->args_) {
161 for (int num_threads : *thread_counts) {
162 BenchmarkInstance instance(family.get(), family_index,
163 per_family_instance_index, args,
164 num_threads);
166 const auto full_name = instance.name().str();
167 if ((re.Match(full_name) && !isNegativeFilter) ||
168 (!re.Match(full_name) && isNegativeFilter)) {
169 benchmarks->push_back(std::move(instance));
171 ++per_family_instance_index;
173 // Only bump the next family index once we've estabilished that
174 // at least one instance of this family will be run.
175 if (next_family_index == family_index) ++next_family_index;
180 return true;
183 Benchmark* RegisterBenchmarkInternal(Benchmark* bench) {
184 std::unique_ptr<Benchmark> bench_ptr(bench);
185 BenchmarkFamilies* families = BenchmarkFamilies::GetInstance();
186 families->AddBenchmark(std::move(bench_ptr));
187 return bench;
190 // FIXME: This function is a hack so that benchmark.cc can access
191 // `BenchmarkFamilies`
192 bool FindBenchmarksInternal(const std::string& re,
193 std::vector<BenchmarkInstance>* benchmarks,
194 std::ostream* Err) {
195 return BenchmarkFamilies::GetInstance()->FindBenchmarks(re, benchmarks, Err);
198 //=============================================================================//
199 // Benchmark
200 //=============================================================================//
202 Benchmark::Benchmark(const char* name)
203 : name_(name),
204 aggregation_report_mode_(ARM_Unspecified),
205 time_unit_(kNanosecond),
206 range_multiplier_(kRangeMultiplier),
207 min_time_(0),
208 iterations_(0),
209 repetitions_(0),
210 measure_process_cpu_time_(false),
211 use_real_time_(false),
212 use_manual_time_(false),
213 complexity_(oNone),
214 complexity_lambda_(nullptr),
215 setup_(nullptr),
216 teardown_(nullptr) {
217 ComputeStatistics("mean", StatisticsMean);
218 ComputeStatistics("median", StatisticsMedian);
219 ComputeStatistics("stddev", StatisticsStdDev);
220 ComputeStatistics("cv", StatisticsCV, kPercentage);
223 Benchmark::~Benchmark() {}
225 Benchmark* Benchmark::Name(const std::string& name) {
226 SetName(name.c_str());
227 return this;
230 Benchmark* Benchmark::Arg(int64_t x) {
231 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == 1);
232 args_.push_back({x});
233 return this;
236 Benchmark* Benchmark::Unit(TimeUnit unit) {
237 time_unit_ = unit;
238 return this;
241 Benchmark* Benchmark::Range(int64_t start, int64_t limit) {
242 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == 1);
243 std::vector<int64_t> arglist;
244 AddRange(&arglist, start, limit, range_multiplier_);
246 for (int64_t i : arglist) {
247 args_.push_back({i});
249 return this;
252 Benchmark* Benchmark::Ranges(
253 const std::vector<std::pair<int64_t, int64_t>>& ranges) {
254 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == static_cast<int>(ranges.size()));
255 std::vector<std::vector<int64_t>> arglists(ranges.size());
256 for (std::size_t i = 0; i < ranges.size(); i++) {
257 AddRange(&arglists[i], ranges[i].first, ranges[i].second,
258 range_multiplier_);
261 ArgsProduct(arglists);
263 return this;
266 Benchmark* Benchmark::ArgsProduct(
267 const std::vector<std::vector<int64_t>>& arglists) {
268 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == static_cast<int>(arglists.size()));
270 std::vector<std::size_t> indices(arglists.size());
271 const std::size_t total = std::accumulate(
272 std::begin(arglists), std::end(arglists), std::size_t{1},
273 [](const std::size_t res, const std::vector<int64_t>& arglist) {
274 return res * arglist.size();
276 std::vector<int64_t> args;
277 args.reserve(arglists.size());
278 for (std::size_t i = 0; i < total; i++) {
279 for (std::size_t arg = 0; arg < arglists.size(); arg++) {
280 args.push_back(arglists[arg][indices[arg]]);
282 args_.push_back(args);
283 args.clear();
285 std::size_t arg = 0;
286 do {
287 indices[arg] = (indices[arg] + 1) % arglists[arg].size();
288 } while (indices[arg++] == 0 && arg < arglists.size());
291 return this;
294 Benchmark* Benchmark::ArgName(const std::string& name) {
295 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == 1);
296 arg_names_ = {name};
297 return this;
300 Benchmark* Benchmark::ArgNames(const std::vector<std::string>& names) {
301 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == static_cast<int>(names.size()));
302 arg_names_ = names;
303 return this;
306 Benchmark* Benchmark::DenseRange(int64_t start, int64_t limit, int step) {
307 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == 1);
308 BM_CHECK_LE(start, limit);
309 for (int64_t arg = start; arg <= limit; arg += step) {
310 args_.push_back({arg});
312 return this;
315 Benchmark* Benchmark::Args(const std::vector<int64_t>& args) {
316 BM_CHECK(ArgsCnt() == -1 || ArgsCnt() == static_cast<int>(args.size()));
317 args_.push_back(args);
318 return this;
321 Benchmark* Benchmark::Apply(void (*custom_arguments)(Benchmark* benchmark)) {
322 custom_arguments(this);
323 return this;
326 Benchmark* Benchmark::Setup(void (*setup)(const benchmark::State&)) {
327 BM_CHECK(setup != nullptr);
328 setup_ = setup;
329 return this;
332 Benchmark* Benchmark::Teardown(void (*teardown)(const benchmark::State&)) {
333 BM_CHECK(teardown != nullptr);
334 teardown_ = teardown;
335 return this;
338 Benchmark* Benchmark::RangeMultiplier(int multiplier) {
339 BM_CHECK(multiplier > 1);
340 range_multiplier_ = multiplier;
341 return this;
344 Benchmark* Benchmark::MinTime(double t) {
345 BM_CHECK(t > 0.0);
346 BM_CHECK(iterations_ == 0);
347 min_time_ = t;
348 return this;
351 Benchmark* Benchmark::Iterations(IterationCount n) {
352 BM_CHECK(n > 0);
353 BM_CHECK(IsZero(min_time_));
354 iterations_ = n;
355 return this;
358 Benchmark* Benchmark::Repetitions(int n) {
359 BM_CHECK(n > 0);
360 repetitions_ = n;
361 return this;
364 Benchmark* Benchmark::ReportAggregatesOnly(bool value) {
365 aggregation_report_mode_ = value ? ARM_ReportAggregatesOnly : ARM_Default;
366 return this;
369 Benchmark* Benchmark::DisplayAggregatesOnly(bool value) {
370 // If we were called, the report mode is no longer 'unspecified', in any case.
371 aggregation_report_mode_ = static_cast<AggregationReportMode>(
372 aggregation_report_mode_ | ARM_Default);
374 if (value) {
375 aggregation_report_mode_ = static_cast<AggregationReportMode>(
376 aggregation_report_mode_ | ARM_DisplayReportAggregatesOnly);
377 } else {
378 aggregation_report_mode_ = static_cast<AggregationReportMode>(
379 aggregation_report_mode_ & ~ARM_DisplayReportAggregatesOnly);
382 return this;
385 Benchmark* Benchmark::MeasureProcessCPUTime() {
386 // Can be used together with UseRealTime() / UseManualTime().
387 measure_process_cpu_time_ = true;
388 return this;
391 Benchmark* Benchmark::UseRealTime() {
392 BM_CHECK(!use_manual_time_)
393 << "Cannot set UseRealTime and UseManualTime simultaneously.";
394 use_real_time_ = true;
395 return this;
398 Benchmark* Benchmark::UseManualTime() {
399 BM_CHECK(!use_real_time_)
400 << "Cannot set UseRealTime and UseManualTime simultaneously.";
401 use_manual_time_ = true;
402 return this;
405 Benchmark* Benchmark::Complexity(BigO complexity) {
406 complexity_ = complexity;
407 return this;
410 Benchmark* Benchmark::Complexity(BigOFunc* complexity) {
411 complexity_lambda_ = complexity;
412 complexity_ = oLambda;
413 return this;
416 Benchmark* Benchmark::ComputeStatistics(const std::string& name,
417 StatisticsFunc* statistics,
418 StatisticUnit unit) {
419 statistics_.emplace_back(name, statistics, unit);
420 return this;
423 Benchmark* Benchmark::Threads(int t) {
424 BM_CHECK_GT(t, 0);
425 thread_counts_.push_back(t);
426 return this;
429 Benchmark* Benchmark::ThreadRange(int min_threads, int max_threads) {
430 BM_CHECK_GT(min_threads, 0);
431 BM_CHECK_GE(max_threads, min_threads);
433 AddRange(&thread_counts_, min_threads, max_threads, 2);
434 return this;
437 Benchmark* Benchmark::DenseThreadRange(int min_threads, int max_threads,
438 int stride) {
439 BM_CHECK_GT(min_threads, 0);
440 BM_CHECK_GE(max_threads, min_threads);
441 BM_CHECK_GE(stride, 1);
443 for (auto i = min_threads; i < max_threads; i += stride) {
444 thread_counts_.push_back(i);
446 thread_counts_.push_back(max_threads);
447 return this;
450 Benchmark* Benchmark::ThreadPerCpu() {
451 thread_counts_.push_back(CPUInfo::Get().num_cpus);
452 return this;
455 void Benchmark::SetName(const char* name) { name_ = name; }
457 int Benchmark::ArgsCnt() const {
458 if (args_.empty()) {
459 if (arg_names_.empty()) return -1;
460 return static_cast<int>(arg_names_.size());
462 return static_cast<int>(args_.front().size());
465 //=============================================================================//
466 // FunctionBenchmark
467 //=============================================================================//
469 void FunctionBenchmark::Run(State& st) { func_(st); }
471 } // end namespace internal
473 void ClearRegisteredBenchmarks() {
474 internal::BenchmarkFamilies::GetInstance()->ClearBenchmarks();
477 std::vector<int64_t> CreateRange(int64_t lo, int64_t hi, int multi) {
478 std::vector<int64_t> args;
479 internal::AddRange(&args, lo, hi, multi);
480 return args;
483 std::vector<int64_t> CreateDenseRange(int64_t start, int64_t limit, int step) {
484 BM_CHECK_LE(start, limit);
485 std::vector<int64_t> args;
486 for (int64_t arg = start; arg <= limit; arg += step) {
487 args.push_back(arg);
489 return args;
492 } // end namespace benchmark