Skip to content

Commit

Permalink
Minor tweak.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Dec 11, 2020
1 parent 334c1d3 commit 0e2b5d1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions benchmarks/benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ void pretty_print(double volume, size_t number_of_floats, std::string name, std:
printf("%-40s: %8.2f MB/s (+/- %.1f %%) ", name.data(),
volumeMB * 1000000000 / result.first,
(result.second - result.first) * 100.0 / result.second);
printf("%8.2f Mfloat/s ",
number_of_floats * 1000 / result.first);
printf(" %8.2f ns/f \n",
double(result.first) /number_of_floats );
}
Expand Down

0 comments on commit 0e2b5d1

Please sign in to comment.