diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-03 16:32:35 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-03 16:32:35 -0400 |
| commit | 4ee495b0727ed40ec5923fe0909b9fda7c119263 (patch) | |
| tree | aa4cad9e1d6f7ad68d5d7c135a4f200ad82efb60 /benchmarks/include | |
| parent | f39e512ae3848abd1d3c68349c1a8fbe97be91b5 (diff) | |
| download | dynamic-extension-4ee495b0727ed40ec5923fe0909b9fda7c119263.tar.gz | |
Bugfixes
Diffstat (limited to 'benchmarks/include')
| -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; |