Skip to content

Commit f86a174

Browse files
committed
Forgot this commit.
1 parent 26e4977 commit f86a174

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

benchmarks/bulk-insert-and-query.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,13 @@ Statistics FilterBenchmark(
239239
#ifdef __linux__
240240
unified.end(results);
241241
printf("%3.2f%% ",found_probability);
242-
printf("cycles: %5.1f/key, instructions: (%5.1f/key, %4.2f/cycle) cache misses: %5.2f/key branch misses: %4.2f/key\n",
242+
printf("cycles: %5.1f/key, instructions: (%5.1f/key, %4.2f/cycle) cache misses: %5.2f/key branch misses: %4.2f/key effective frequency %4.2f GHz\n",
243243
results[0]*1.0/to_lookup_mixed.size(),
244244
results[1]*1.0/to_lookup_mixed.size(),
245245
results[1]*1.0/results[0],
246246
results[2]*1.0/to_lookup_mixed.size(),
247-
results[3] * 1.0/to_lookup_mixed.size());
247+
results[3] * 1.0/to_lookup_mixed.size(),
248+
results[0]*1.0/lookup_time);
248249
#else
249250
std::cout << "." << std::flush;
250251
#endif

0 commit comments

Comments
 (0)