aboutsummaryrefslogtreecommitdiff
path: root/bench.py
diff options
context:
space:
mode:
Diffstat (limited to 'bench.py')
-rwxr-xr-xbench.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bench.py b/bench.py
index c52c0c1..36ea5ec 100755
--- a/bench.py
+++ b/bench.py
@@ -10,6 +10,7 @@ parser = argparse.ArgumentParser(description="benchmark memory allocators")
parser.add_argument("-s", "--save", help="save benchmark results to disk", action='store_true')
parser.add_argument("-l", "--load", help="load benchmark results from disk", action='store_true')
parser.add_argument("-r", "--runs", help="how often the benchmarks run", default=3, type=int)
+parser.add_argument("-v", "--verbose", help="more output", action='store_true')
benchmarks = [loop, conprod, mysql]