mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 08:25:43 +08:00
updated bench to show elapsed too
This commit is contained in:
parent
ee2fd265fd
commit
ade22934e3
@ -100,7 +100,7 @@ void bench(int howmany, std::shared_ptr<spdlog::logger> log)
|
||||
|
||||
auto delta = system_clock::now() - start;
|
||||
auto delta_d = duration_cast<duration<double>>(delta).count();
|
||||
cout << format(int(howmany / delta_d)) << "/sec" << endl;
|
||||
cout << "Elapsed: " << delta_d << "\t" << format(int(howmany / delta_d)) << "/sec" << endl;
|
||||
}
|
||||
|
||||
void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count)
|
||||
@ -130,5 +130,5 @@ void bench_mt(int howmany, std::shared_ptr<spdlog::logger> log, int thread_count
|
||||
|
||||
auto delta = system_clock::now() - start;
|
||||
auto delta_d = duration_cast<duration<double>>(delta).count();
|
||||
cout << format(int(howmany / delta_d)) << "/sec" << endl;
|
||||
cout << "Elapsed: " << delta_d << "\t" << format(int(howmany / delta_d)) << "/sec" << endl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user