diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-26 10:22:06 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-26 10:22:06 -0400 |
| commit | 5b45c6523dfbd5611a907a5e121a1e3b41cc0c8d (patch) | |
| tree | 3ffc2bb98746c302fe8d8fe0e1f90cb2fe553a4a /benchmarks/include | |
| parent | 93f91df96053d47571204734b71d280b8ef56515 (diff) | |
| download | dynamic-extension-5b45c6523dfbd5611a907a5e121a1e3b41cc0c8d.tar.gz | |
Benchmark output format adjustments
Benchmarks should now return,
insert throughput
index size (not counting data arrays)
sampling latency
static index size
static sampling latency
Diffstat (limited to 'benchmarks/include')
| -rw-r--r-- | benchmarks/include/bench.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/include/bench.h b/benchmarks/include/bench.h index db8fc77..b12f3e6 100644 --- a/benchmarks/include/bench.h +++ b/benchmarks/include/bench.h @@ -68,7 +68,7 @@ static bool insert_tput_bench(DE &de_index, std::fstream &file, size_t insert_cn size_t throughput = (((double) (applied_inserts + applied_deletes) / (double) total_time) * 1e9); - fprintf(stdout, "\n%ld\n", throughput); + fprintf(stdout, "%ld\t", throughput); reset_de_perf_metrics(); return continue_benchmark; |