27 #ifndef __invdyn_stopwatch_H__ 28 #define __invdyn_stopwatch_H__ 34 #pragma GCC visibility push(default) 39 #define START_PROFILER(name) getProfiler().start(name) 40 #define STOP_PROFILER(name) getProfiler().stop(name) 42 #define STOP_WATCH_MAX_NAME_LENGTH 60 43 #define STOP_WATCH_TIME_WIDTH 10 159 bool performance_exists(std::string perf_name);
165 void start(std::string perf_name);
168 void stop(std::string perf_name);
171 void pause(std::string perf_name);
174 void reset(std::string perf_name);
180 void report(std::string perf_name,
int precision = 2,
181 std::ostream& output = std::cout);
184 void report_all(
int precision = 2, std::ostream& output = std::cout);
187 long double get_total_time(std::string perf_name);
190 long double get_average_time(std::string perf_name);
193 long double get_min_time(std::string perf_name);
196 long double get_max_time(std::string perf_name);
199 long double get_last_time(std::string perf_name);
203 long double get_time_so_far(std::string perf_name);
213 long double take_time();
263 #pragma GCC visibility pop
Stopwatch & getProfiler()
A class representing a stopwatch.
std::map< std::string, PerformanceData > * records_of
StopwatchException(std::string error)