summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-12 23:37:02 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-12 23:37:02 -0700
commit36a50c3cbb6920b055962e10d75e8fd0939e7f82 (patch)
treeb67458b620608049ea65e19c7f9da0af071aeb8e /main.py
parent065ac868da9d5ae9cb1da628a953a96a6282b610 (diff)
Setup for new benchmark and bugfix
Diffstat (limited to 'main.py')
-rw-r--r--main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.py b/main.py
index 059fa2213..9144099d5 100644
--- a/main.py
+++ b/main.py
@@ -67,17 +67,17 @@ def main():
procs = []
cm_pipes = []
ljm_pipes = []
- for i in range(500, 1500 + 1, 500):
+ for i in range(2500, 6000 + 1, 500):
cm_recv, cm_send = Pipe(False)
p1 = Process(target=do_ml,
- args=(cm_data, energy_pbe0, i, 'CM', cm_send, 500))
+ args=(cm_data, energy_pbe0, i, 'CM', cm_send))
procs.append(p1)
cm_pipes.append(cm_recv)
p1.start()
ljm_recv, ljm_send = Pipe(False)
p2 = Process(target=do_ml,
- args=(ljm_data, energy_pbe0, i, 'L-JM', ljm_send, 500))
+ args=(ljm_data, energy_pbe0, i, 'L-JM', ljm_send))
procs.append(p2)
ljm_pipes.append(ljm_recv)
p2.start()