We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa7bcc commit 75d01f0Copy full SHA for 75d01f0
1 file changed
benchmarks/bench_ip.cpp
@@ -11,6 +11,9 @@
11
12
void pretty_print(size_t volume, size_t bytes, std::string name,
13
counters::event_aggregate agg) {
14
+ if (agg.inner_count > 1) {
15
+ printf("# (inner count: %d)\n", agg.inner_count);
16
+ }
17
printf("%-40s : ", name.c_str());
18
printf(" %5.2f GB/s ", bytes / agg.fastest_elapsed_ns());
19
printf(" %5.1f Mip/s ", volume * 1000.0 / agg.fastest_elapsed_ns());
0 commit comments