Skip to content
Snippets Groups Projects
Commit 3c6b3243 authored by David Hendriks's avatar David Hendriks
Browse files

fixed bug

parent 7723404e
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ hostname = socket.gethostname() ...@@ -16,7 +16,7 @@ hostname = socket.gethostname()
if amount_of_cpus <= 4: if amount_of_cpus <= 4:
stepsize = 1 stepsize = 1
elif 4 < amount_of_cpus <= 24: elif 4 < amount_of_cpus:
stepsize = 2 stepsize = 2
# elif 24 < amount_of_cpus <= 48: # elif 24 < amount_of_cpus <= 48:
# stepsize = 4 # stepsize = 4
...@@ -123,4 +123,4 @@ result_dict['mp'] = mp_dict ...@@ -123,4 +123,4 @@ result_dict['mp'] = mp_dict
with open('scaling_results/{}_{}_systems.json'.format(hostname, total_systems), 'w') as f: with open('scaling_results/{}_{}_systems.json'.format(hostname, total_systems), 'w') as f:
f.write(json.dumps(result_dict)) f.write(json.dumps(result_dict))
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment