Skip to content
This repository was archived by the owner on Jul 18, 2019. It is now read-only.

Commit 8a6184d

Browse files
committed
Updated benchmark command line arguments
Fixes SaschaWillems#475
1 parent d53b098 commit 8a6184d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/benchmark-all.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
for example in EXAMPLES:
7373
print("---- (%d/%d) Running %s in benchmark mode ----" % (CURR_INDEX+1, len(EXAMPLES), example))
7474
if platform.system() == 'Linux':
75-
RESULT_CODE = subprocess.call("./%s %s ./benchmark/%s 5" % (example, ARGS, example), shell=True)
75+
RESULT_CODE = subprocess.call("./%s %s -bf ./benchmark/%s.csv 5" % (example, ARGS, example), shell=True)
7676
else:
77-
RESULT_CODE = subprocess.call("%s %s ./benchmark/%s 5" % (example, ARGS, example))
77+
RESULT_CODE = subprocess.call("%s %s -bf ./benchmark/%s.csv 5" % (example, ARGS, example))
7878
if RESULT_CODE == 0:
7979
print("Results written to ./benchmark/%s.csv" % example)
8080
else:

0 commit comments

Comments
 (0)