Commit 7a1fa486 authored by turneram's avatar turneram
Browse files

Formatting

parent 6e60de71
...@@ -719,9 +719,9 @@ void program::perf_report(std::ostream& os, ...@@ -719,9 +719,9 @@ void program::perf_report(std::ostream& os,
os << std::endl; os << std::endl;
os << "Batch size: " << batch << std::endl; os << "Batch size: " << batch << std::endl;
os << "Average: " << average << std::endl; os << "Average: " << average << "ms" << std::endl;
os << "Median: " << med << std::endl; os << "Median: " << med << "ms" << std::endl;
os << "Standard deviation: " << std_dev << std::endl; os << "Standard deviation: " << std_dev << "ms" << std::endl;
os << "Rate: " << rate * batch << "/sec" << std::endl; os << "Rate: " << rate * batch << "/sec" << std::endl;
os << "Total time: " << total_time << "ms" << std::endl; os << "Total time: " << total_time << "ms" << std::endl;
os << "Total instructions time: " << total_instruction_time << "ms" << std::endl; os << "Total instructions time: " << total_instruction_time << "ms" << std::endl;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment