22 #include <Eigen/Eigen> 23 #include <boost/algorithm/string/predicate.hpp> 24 #include <boost/filesystem.hpp> 25 #include <boost/foreach.hpp> 35 #ifdef HAVE_PYTHONLIBS 44 int main(
int argc,
char **argv) {
52 PRINT_ERROR(
RED "ERROR: ./timing_flamegraph <file_times.txt> <subsample>\n" RESET);
53 PRINT_ERROR(
RED "ERROR: rosrun ov_eval timing_flamegraph <file_times.txt> <subsample>\n" RESET);
54 std::exit(EXIT_FAILURE);
58 keep_every = atoi(argv[2]);
62 std::vector<std::string> names;
63 std::vector<double> times;
64 std::vector<Eigen::VectorXd> timing_values;
66 PRINT_INFO(
"[TIME]: loaded %d timestamps from file (%d categories)!!\n", (
int)times.size(), (int)names.size());
69 std::vector<ov_eval::Statistics> stats;
70 for (
size_t i = 0; i < names.size(); i++)
74 for (
size_t i = 0; i < times.size(); i++) {
75 for (
size_t c = 0; c < names.size(); c++) {
76 stats.at(c).timestamps.push_back(times.at(i));
77 stats.at(c).values.push_back(timing_values.at(i)(c));
82 for (
size_t i = 0; i < names.size(); i++) {
83 stats.at(i).calculate();
84 PRINT_INFO(
"mean_time = %.4f | std = %.4f | 99th = %.4f | max = %.4f (%s)\n", stats.at(i).mean, stats.at(i).std,
85 stats.at(i).ninetynine, stats.at(i).max, names.at(i).c_str());
88 #ifdef HAVE_PYTHONLIBS 91 std::vector<double> times_skipped;
92 for (
size_t t = 0; t < times.size(); t++) {
93 if (t % keep_every == 0) {
94 times_skipped.push_back(times.at(t));
99 double starttime1 = (times_skipped.empty()) ? 0 : times_skipped.at(0);
100 double endtime1 = (times_skipped.empty()) ? 0 : times_skipped.at(times_skipped.size() - 1);
101 for (
size_t j = 0; j < times_skipped.size(); j++) {
102 times_skipped.at(j) -= starttime1;
108 std::vector<std::string> colors_valid = {
"navy",
"blue",
"lightgreen",
"green",
"gold",
"goldenrod"};
112 std::vector<std::string> labels;
113 std::vector<std::string> colors;
114 std::vector<std::vector<double>> timings;
115 for (
size_t i = 0; i < names.size() - 1; i++) {
116 labels.push_back(names.at(i));
117 colors.push_back(colors_valid.at(i % colors_valid.size()));
118 std::vector<double> values_skipped;
119 for (
size_t t = 0; t < stats.at(i).values.size(); t++) {
120 if (t % keep_every == 0) {
121 values_skipped.push_back(stats.at(i).values.at(t));
124 timings.push_back(values_skipped);
Statistics object for a given set scalar time series values.
void ylim(Numeric left, Numeric right)
int main(int argc, char **argv)
void figure_size(size_t w, size_t h)
void show(const bool block=true)
static void setPrintLevel(const std::string &level)
#define PRINT_ERROR(x...)
void xlim(Numeric left, Numeric right)
bool stackplot(const std::vector< NumericX > &x, const std::vector< std::vector< NumericY >> &ys, const std::vector< std::string > &labels, const std::vector< std::string > &colors, const std::string &baseline="zero")
void xlabel(const std::string &str, const std::map< std::string, std::string > &keywords={})
void ylabel(const std::string &str, const std::map< std::string, std::string > &keywords={})
static void load_timing_flamegraph(std::string path, std::vector< std::string > &names, std::vector< double > ×, std::vector< Eigen::VectorXd > &timing_values)
Load comma separated timing file from pid_ros.py file.