15 #ifndef OPENSCENARIO_INTERPRETER__UTILITY__EXECUTION_TIMER_HPP_
16 #define OPENSCENARIO_INTERPRETER__UTILITY__EXECUTION_TIMER_HPP_
18 #include <boost/accumulators/accumulators.hpp>
19 #include <boost/accumulators/statistics.hpp>
23 #include <nlohmann/json.hpp>
24 #include <unordered_map>
28 inline namespace utility
31 typename Clock = std::chrono::system_clock,
32 typename Accumulators = boost::accumulators::accumulator_set<
34 boost::accumulators::stats<
35 boost::accumulators::tag::min, boost::accumulators::tag::max, boost::accumulators::tag::mean,
36 boost::accumulators::tag::variance, boost::accumulators::tag::count>>>
39 static constexpr
double nanoseconds_to_seconds = 1e-9;
42 using std::unordered_map<std::string, Accumulators>::clear;
44 template <
typename Thunk,
typename... Ts>
47 const auto begin = Clock::now();
51 const auto end = Clock::now();
53 (*this)[tag](std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin).count());
58 auto save(
const boost::filesystem::path & output_file) ->
void
61 nlohmann::json json_data;
62 for (
const auto & [name, statistics] : *
this) {
63 json_data[name +
"/min"] =
64 boost::accumulators::extract::min(statistics) * nanoseconds_to_seconds;
65 json_data[name +
"/max"] =
66 boost::accumulators::extract::max(statistics) * nanoseconds_to_seconds;
67 json_data[name +
"/mean"] =
68 boost::accumulators::extract::mean(statistics) * nanoseconds_to_seconds;
69 json_data[name +
"/stddev"] =
70 std::sqrt(boost::accumulators::extract::variance(statistics)) * nanoseconds_to_seconds;
71 json_data[name +
"/count"] = boost::accumulators::extract::count(statistics);
74 std::ofstream file(output_file);
75 file << json_data.dump(4);
Definition: execution_timer.hpp:38
auto save(const boost::filesystem::path &output_file) -> void
Definition: execution_timer.hpp:58
auto getStatistics(const std::string &tag) -> const auto &
Definition: execution_timer.hpp:78
auto invoke(const std::string &tag, Thunk &&thunk)
Definition: execution_timer.hpp:45
std::string string
Definition: junit5.hpp:26