123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- // -*- mode: c++; coding: utf-8 -*-
- // ra-ra - Benchmarking library.
- // (c) Daniel Llorens - 2017-2023
- // This library is free software; you can redistribute it and/or modify it under
- // the terms of the GNU Lesser General Public License as published by the Free
- // Software Foundation; either version 3 of the License, or (at your option) any
- // later version.
- #pragma once
- #include <string>
- #include <iostream>
- #include <iomanip>
- #include <chrono>
- #include "test.hh"
- // TODO measure empty loops
- // TODO better reporting
- // TODO allow benchmarked functions to return results
- struct Benchmark
- {
- using clock = std::conditional_t<std::chrono::high_resolution_clock::is_steady,
- std::chrono::high_resolution_clock,
- std::chrono::steady_clock>;
- static clock::duration
- lapse(clock::duration empty, clock::duration full)
- {
- return (full>empty) ? full-empty : full;
- }
- static double
- toseconds(clock::duration const & t)
- {
- return std::chrono::duration<float, std::ratio<1, 1>>(t).count();
- }
- struct Value
- {
- std::string name;
- int repeats;
- clock::duration empty;
- ra::Big<clock::duration, 1> times;
- };
- static double
- avg(Value const & bv)
- {
- return toseconds(sum(bv.times))/bv.repeats/bv.times.size();
- }
- static double
- stddev(Value const & bv)
- {
- double m = avg(bv);
- return sqrt(sum(sqr(ra::map(toseconds, bv.times)/bv.repeats-m))/bv.times.size());
- }
- void
- report(std::ostream & o, auto const & b, double frac)
- {
- o << (info_str=="" ? "" : info_str + " : ") << ra::map([](auto && bv) { return avg(bv); }, b)/frac << std::endl;
- o << (info_str=="" ? "" : info_str + " : ") << ra::map([](auto && bv) { return stddev(bv); }, b)/frac << std::endl;
- info_str = "";
- }
- int const repeats_ = 1;
- int const runs_ = 1;
- std::string const name_ = "";
- std::string info_str = "";
- Benchmark &
- info(auto && ... a)
- {
- bool empty = (info_str=="");
- info_str += ra::esc::plain;
- info_str += (empty ? "" : "; ");
- info_str += ra::format(a ...);
- info_str += ra::esc::plain;
- return *this;
- }
- Benchmark name(std::string name_) { return Benchmark { repeats_, runs_, name_, "" }; }
- Benchmark repeats(int repeats_) { return Benchmark { repeats_, runs_, name_, "" }; }
- Benchmark runs(int runs_) { return Benchmark { repeats_, runs_, name_, "" }; }
- auto
- once(auto && f, auto && ... a)
- {
- auto t0 = clock::now();
- clock::duration empty = clock::now()-t0;
- ra::Big<clock::duration, 1> times;
- for (int k=0; k<runs_; ++k) {
- auto t0 = clock::now();
- for (int i=0; i<repeats_; ++i) {
- f(RA_FWD(a) ...);
- }
- clock::duration full = clock::now()-t0;
- times.push_back(lapse(empty, full));
- }
- return Value { name_, repeats_, empty, std::move(times) };
- }
- auto
- once_f(auto && g, auto && ... a)
- {
- clock::duration empty;
- g([&](auto && f)
- {
- auto t0 = clock::now();
- empty = clock::now()-t0;
- }, RA_FWD(a) ...);
- ra::Big<clock::duration, 1> times;
- for (int k=0; k<runs_; ++k) {
- g([&](auto && f)
- {
- auto t0 = clock::now();
- for (int i=0; i<repeats_; ++i) {
- f();
- }
- clock::duration full = clock::now()-t0;
- times.push_back(lapse(empty, full));
- }, RA_FWD(a) ...);
- }
- return Value { name_, repeats_, empty, std::move(times) };
- }
- auto
- run(auto && f, auto && ... a)
- {
- return ra::concrete(ra::from([this, &f](auto && ... b) { return this->once(f, b ...); }, a ...));
- }
- auto
- run_f(auto && f, auto && ... a)
- {
- return ra::concrete(ra::from([this, &f](auto && ... b) { return this->once_f(f, b ...); }, a ...));
- }
- };
- template <> constexpr bool ra::is_scalar_def<Benchmark::Value> = true;
|