Skip to content

Commit 75d01f0

Browse files
committed
display the inner count (check)
1 parent bfa7bcc commit 75d01f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

benchmarks/bench_ip.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
void pretty_print(size_t volume, size_t bytes, std::string name,
1313
counters::event_aggregate agg) {
14+
if (agg.inner_count > 1) {
15+
printf("# (inner count: %d)\n", agg.inner_count);
16+
}
1417
printf("%-40s : ", name.c_str());
1518
printf(" %5.2f GB/s ", bytes / agg.fastest_elapsed_ns());
1619
printf(" %5.1f Mip/s ", volume * 1000.0 / agg.fastest_elapsed_ns());

0 commit comments

Comments
 (0)