scenario_simulator_v2 C++ API
execution_timer.hpp
Go to the documentation of this file.
1 // Copyright 2015 TIER IV, 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.
14 
15 #ifndef OPENSCENARIO_INTERPRETER__UTILITY__EXECUTION_TIMER_HPP_
16 #define OPENSCENARIO_INTERPRETER__UTILITY__EXECUTION_TIMER_HPP_
17 
18 #include <boost/accumulators/accumulators.hpp>
19 #include <boost/accumulators/statistics.hpp>
20 #include <chrono>
21 #include <cmath>
22 #include <functional>
23 #include <nlohmann/json.hpp>
24 #include <unordered_map>
25 
27 {
28 inline namespace utility
29 {
30 template <
31  typename Clock = std::chrono::system_clock,
32  typename Accumulators = boost::accumulators::accumulator_set<
33  std::int64_t,
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>>>
37 class ExecutionTimer : private std::unordered_map<std::string, Accumulators>
38 {
39  static constexpr double nanoseconds_to_seconds = 1e-9;
40 
41 public:
42  using std::unordered_map<std::string, Accumulators>::clear;
43 
44  template <typename Thunk, typename... Ts>
45  auto invoke(const std::string & tag, Thunk && thunk)
46  {
47  const auto begin = Clock::now();
48 
49  thunk();
50 
51  const auto end = Clock::now();
52 
53  (*this)[tag](std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin).count());
54 
55  return end - begin;
56  }
57 
58  auto save(const boost::filesystem::path & output_file) -> void
59  {
60  // the unit of each statistics is seconds
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);
72  }
73 
74  std::ofstream file(output_file);
75  file << json_data.dump(4);
76  }
77 
78  auto getStatistics(const std::string & tag) -> const auto & { return (*this)[tag]; }
79 };
80 } // namespace utility
81 } // namespace openscenario_interpreter
82 
83 #endif // OPENSCENARIO_INTERPRETER__UTILITY__EXECUTION_TIMER_HPP_
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
Definition: hypot.hpp:22
std::string string
Definition: junit5.hpp:26