| 86 | typedef std::chrono::time_point<std::chrono::high_resolution_clock> TimePointType; |
| 87 | |
| 88 | void showTimeData(std::string p_Task, TimePointType& t1, TimePointType& t2) { |
| 89 | t2 = std::chrono::high_resolution_clock::now(); |
| 90 | std::chrono::duration<double> l_durationSec = t2 - t1; |
| 91 | std::cout << " DATA: time " << p_Task << " " << std::fixed << std::setprecision(6) << l_durationSec.count() * 1e3 |
| 92 | << " msec\n"; |
| 93 | } |
| 94 | |
| 95 | int main(int argc, char** argv) { |
| 96 | if (argc < 3) { |