diff options
-rw-r--r-- | Post/Formation/extract_wmf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Post/Formation/extract_wmf.py b/Post/Formation/extract_wmf.py index d4b9c85..8500530 100644 --- a/Post/Formation/extract_wmf.py +++ b/Post/Formation/extract_wmf.py @@ -75,7 +75,7 @@ for istep, nstep in enumerate(nsteps): # Loop Steps print "// Computing WMF & Sources for %i Steps" % len(targets) pool = mp.Pool(processes=args.np) -result = pool.map(fh.compute_wmf_wrapper, targets) +result = pool.map(fh.compute_wmf_wrapper, targets, 1) pool.close() pool.join() |