From 8a6184dc81103ff213c59f492abca92c35621477 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Sat, 14 Jul 2018 11:28:58 +0200 Subject: [PATCH] Updated benchmark command line arguments Fixes #475 --- bin/benchmark-all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/benchmark-all.py b/bin/benchmark-all.py index 403feabb3..78773df26 100644 --- a/bin/benchmark-all.py +++ b/bin/benchmark-all.py @@ -72,9 +72,9 @@ for example in EXAMPLES: print("---- (%d/%d) Running %s in benchmark mode ----" % (CURR_INDEX+1, len(EXAMPLES), example)) if platform.system() == 'Linux': - RESULT_CODE = subprocess.call("./%s %s ./benchmark/%s 5" % (example, ARGS, example), shell=True) + RESULT_CODE = subprocess.call("./%s %s -bf ./benchmark/%s.csv 5" % (example, ARGS, example), shell=True) else: - RESULT_CODE = subprocess.call("%s %s ./benchmark/%s 5" % (example, ARGS, example)) + RESULT_CODE = subprocess.call("%s %s -bf ./benchmark/%s.csv 5" % (example, ARGS, example)) if RESULT_CODE == 0: print("Results written to ./benchmark/%s.csv" % example) else: