diff options
Diffstat (limited to 'benchmarks')
| -rw-r--r-- | benchmarks/include/bench.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/benchmarks/include/bench.h b/benchmarks/include/bench.h index b12f3e6..e14460e 100644 --- a/benchmarks/include/bench.h +++ b/benchmarks/include/bench.h @@ -104,6 +104,7 @@ static bool query_latency_bench(DE &de_index, std::vector<QP> queries, size_t tr size_t query_latency = total_time / (trial_cnt * queries.size()); fprintf(stdout, "%ld\t", query_latency); + fprintf(stderr, "%ld\n", total_results); fflush(stdout); return true; @@ -145,6 +146,7 @@ static bool static_latency_bench(Shard *shard, std::vector<QP> queries, size_t t size_t query_latency = total_time / (trial_cnt * queries.size()); fprintf(stdout, "%ld\t", query_latency); + fprintf(stderr, "%ld\n", total_results); fflush(stdout); return true; |