summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-15 19:09:03 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2019-12-15 19:09:03 -0700
commitc7fccbab8ebf35cdbb007f71bcfc609c0c10d8ce (patch)
tree79acbc3df653750fa60bbd988d097d4d9c88abab /main.py
parent3c282cdee55b63504e31b6ce1ac32261a95d5c52 (diff)
Add more benchmarks
Diffstat (limited to 'main.py')
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 013ae50fc..1e9a09631 100644
--- a/main.py
+++ b/main.py
@@ -52,7 +52,7 @@ def main():
ljm_recv, ljm_send = Pipe(False)
p2 = Process(target=lj_matrix_multiple,
- args=(molecules, nuclear_charge, ljm_send))
+ args=(molecules, nuclear_charge, ljm_send, 1, 0.25))
procs.append(p2)
pipes.append(ljm_recv)
p2.start()
@@ -99,7 +99,7 @@ def main():
# cm_text = ','.join([str(field) for field in cm])\
# + ',' + date + '\n'
ljm_text = ','.join([str(field) for field in ljm])\
- + ',0.25,1,' + date + '\n'
+ + ',1,0.25,' + date + '\n'
# save_file.write(cm_text)
save_file.write(ljm_text)