summaryrefslogtreecommitdiffstats
path: root/benchmarks/sampling_tput.cpp
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-06-07 10:35:50 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-06-07 10:35:50 -0400
commit5645cc13b84e2500b4c4d1f337df3b124c6b5845 (patch)
tree143b384ed5f3b032689ed099ea122c61b7ea5412 /benchmarks/sampling_tput.cpp
parentaa5832f5e1bf7fcbd0a9507677a650b5e749ef46 (diff)
downloaddynamic-extension-5645cc13b84e2500b4c4d1f337df3b124c6b5845.tar.gz
Benchmark updates (disabled sampling temporarily)
Diffstat (limited to 'benchmarks/sampling_tput.cpp')
-rw-r--r--benchmarks/sampling_tput.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/sampling_tput.cpp b/benchmarks/sampling_tput.cpp
index 3eb72dc..3d38d6a 100644
--- a/benchmarks/sampling_tput.cpp
+++ b/benchmarks/sampling_tput.cpp
@@ -73,7 +73,7 @@ static bool insert_benchmark(ExtendedWSS *tree, std::fstream *file,
progress_update(1.0, "inserting:");
size_t throughput = (((double) (applied_inserts + applied_deletes) / (double) total_time) * 1e9);
- fprintf(stdout, "%ld\t", throughput);
+ fprintf(stdout, "\n%ld\n", throughput);
reset_de_perf_metrics();
return continue_benchmark;
@@ -147,7 +147,7 @@ int main(int argc, char **argv)
size_t insert_cnt = record_count - warmup_cnt;
insert_benchmark(&sampling_lsm, &datafile, insert_cnt, delete_prop);
- sample_benchmark(&sampling_lsm, 1000, 10000);
+// sample_benchmark(&sampling_lsm, 1000, 10000);
delete_bench_env();
fflush(stdout);