Update performance_runner.cc (#142)

This commit is contained in:
Yufeng Li 2018-12-10 17:33:20 -08:00 committed by Pranav Sharma
parent b054646ddd
commit 8510ccdfe7

View file

@ -47,7 +47,7 @@ Status PerformanceRunner::Run() {
std::cout << "Total time cost:" << performance_result_.total_time_cost << std::endl
<< "Total iterations:" << performance_result_.time_costs.size() << std::endl
<< "Average time cost:" << performance_result_.total_time_cost / performance_result_.time_costs.size() << std::endl;
<< "Average time cost:" << performance_result_.total_time_cost / performance_result_.time_costs.size() * 1000 << " ms" << std::endl;
return Status::OK();
}