From 9ed59e71f632eec793a82ddd7c94d3df93caabec Mon Sep 17 00:00:00 2001 From: nachocano Date: Sat, 6 Dec 2014 12:09:40 -0800 Subject: [PATCH] speed runner --- test/speed_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/speed_runner.py b/test/speed_runner.py index 8dcae7f9a..8e6bfa404 100644 --- a/test/speed_runner.py +++ b/test/speed_runner.py @@ -16,7 +16,7 @@ def main(): for data in ndata: for repeat in nrepeat: for machine in machines: - host_file = os.path.join(args.host_dir, 'host%d' % machine) + host_file = os.path.join(args.host_dir, 'hosts%d' % machine) cmd = 'python %s %d %s %s %d %d' % (args.submit_script, machine, host_file, args.executable, data, repeat) print 'data=%d, repeat=%d, machine=%d' % (data, repeat, machine) os.system(cmd)