summaryrefslogtreecommitdiffstats
path: root/benchmarks/pgm_pl_bench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/pgm_pl_bench.cpp')
-rw-r--r--benchmarks/pgm_pl_bench.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/benchmarks/pgm_pl_bench.cpp b/benchmarks/pgm_pl_bench.cpp
deleted file mode 100644
index f798861..0000000
--- a/benchmarks/pgm_pl_bench.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * benchmarks/triespline_rq_bench.cpp
- *
- * Copyright (C) 2023 Douglas Rumbaugh <drumbaugh@psu.edu>
- *
- * All rights reserved. Published under the Modified BSD License.
- *
- */
-#include "include/bench.h"
-
-int main(int argc, char **argv)
-{
- if (argc < 5) {
- fprintf(stderr, "Usage: pgm_pl_bench <filename> <record_count> <delete_proportion> <query_file> [osm_data]\n");
- exit(EXIT_FAILURE);
- }
-
- std::string filename = std::string(argv[1]);
- size_t record_count = atol(argv[2]);
- size_t buffer_cap = 1000;
- size_t scale_factor = 6;
- double delete_prop = atof(argv[3]);
- double max_delete_prop = (delete_prop > 0) ? delete_prop : 1;
- std::string query_file = std::string(argv[4]);
- bool use_osm = (argc == 6) ? atoi(argv[5]) : 0;
-
- double insert_batch = 0.1;
-
- init_bench_env(record_count, true, use_osm);
-
- auto de = ExtendedPGM_PL(buffer_cap, scale_factor, max_delete_prop);
- auto queries = read_lookup_queries<de::PGMPointLookupParms<Rec>>(query_file, .0001);
-
- std::fstream datafile;
- datafile.open(filename, std::ios::in | std::ios::binary);
-
- std::vector<Rec> to_delete;
-
- // warm up the tree with initial_insertions number of initially inserted
- // records
- size_t warmup_cnt = insert_batch * record_count;
- warmup<ExtendedPGM_PL, Rec>(datafile, de, warmup_cnt, delete_prop, to_delete, true, true);
-
- size_t insert_cnt = record_count - warmup_cnt;
-
- insert_tput_bench<ExtendedPGM_PL, Rec>(de, datafile, insert_cnt, delete_prop, to_delete, true);
- fprintf(stdout, "%ld\t", de.get_memory_usage());
- query_latency_bench<ExtendedPGM_PL, Rec, de::PGMPointLookupParms<Rec>>(de, queries, 1);
-
- fprintf(stdout, "\n");
-
- auto ts = de.create_static_structure();
-
- fprintf(stdout, "%ld\t", ts->get_memory_usage());
- static_latency_bench<de::PGM<Rec>, Rec, de::PGMPointLookupParms<Rec>, de::PGMPointLookup<Rec>>(
- ts, queries, 1
- );
- fprintf(stdout, "\n");
-
- delete ts;
-
- delete_bench_env();
- fflush(stdout);
- fflush(stderr);
-
- exit(EXIT_SUCCESS);
-}