diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-01-30 15:31:03 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-01-30 15:31:03 -0500 |
| commit | f24fdf2fd310a5f868e15cd9682ca37d740c77af (patch) | |
| tree | b637160ce464dc05104e4ce2968e0568f550567c /benchmarks/watermark_testing.cpp | |
| parent | 4aa907d6275b1b74be87ed2f2e94d8a2719a6a97 (diff) | |
| download | dynamic-extension-f24fdf2fd310a5f868e15cd9682ca37d740c77af.tar.gz | |
Benchmarking updates
Diffstat (limited to 'benchmarks/watermark_testing.cpp')
| -rw-r--r-- | benchmarks/watermark_testing.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/benchmarks/watermark_testing.cpp b/benchmarks/watermark_testing.cpp index 1abe7f5..e016aa4 100644 --- a/benchmarks/watermark_testing.cpp +++ b/benchmarks/watermark_testing.cpp @@ -21,7 +21,7 @@ typedef de::DynamicExtension<Rec, ISAM, Q> Ext; int main(int argc, char **argv) { std::vector hwms = {5000l, 10000l, 20000l, 50000l}; - std::vector lwms = {.1, .2, .3, .4, .5}; + std::vector lwms = {.1, .2, .3, .4, .5, .6, .7, .8, .9}; size_t n = 1000000; @@ -46,6 +46,8 @@ int main(int argc, char **argv) { fprintf(stdout, "%ld\t%ld\t%lf\n", lwm, hwm, insert_throughput); + extension->print_scheduler_statistics(); + delete extension; } } |