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

small change

parent 59a682cd
No related branches found
No related tags found
No related merge requests found
......@@ -551,7 +551,10 @@ class Population(object):
r = list(p.imap(evolve_mp, g(mass_distribution)))
stop_mp = time.time()
print("with mp: {} systems took {}s using {} cores".format(len(mass_distribution), stop_mp-start_mp), self.grid_options['amt_cores'])
print("with mp: {} systems took {}s using {} cores".format(len(mass_distribution), stop_mp-start_mp, self.grid_options['amt_cores']))
# TODO: add functionality to unload all the stores etc
#########################################################
# print("Running mp versus no mp is {} times faster!".format((start_no_mp-stop_no_mp)/(start_mp-stop_mp)))
......
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