so I've been writing numerical stuff with numpy and multiprocessing for some time now. It works ok, but I'm having trouble collecting the results. I've done it in the following way, I take a queue for input and one for output. The program reads the parameters from the input queue, processes it and then puts the result into the output queue. Later on in the main process I read it out from the queue and pickle it. Something like this:
def fun(inp,outp):
while True:
try:
params = inp.get(block=False)
results = runprocess(params)
out.put(results,block=False)
except Empty:
break
later on in the main loop i do the following:
for p in processes:
p.start()
for p in processes:
p.join()
while True:
try:
out = outp.get(block=False)
a[i] = [out]
except Empty:
break
fi = open(filename,"w")
cPickle.dump(fi,a)
fi.close()
But somehow, one of two things always happen: either the pickle comes out empty, or the processes hang up and stay running, using 0% cpu (in the beginning they go up to 100%, it's basically number crunching). Any thoughts on what I'm doing wrong?
Ok, so I've redone it with Pool.map(). Just so everyone knows how I got it to work here's the snippet:
ncpus = mp.cpu_count()
out = dict()
params = [(a,p) for p in np.arange(0.0,2.0,0.1) for a in np.arange(0.001,2.0,0.1)]
pool = mp.Pool(processes=ncpus)
results = pool.map(runm,params)
for i in results:
sigs = np.zeros((order,order))
sigsmf = np.zeros((order,order))
sigseq = np.zeros((order,order))
xs = np.array([])
freqs = np.array([])
[(a,p),sigs[:,:],sigsmf[:,:],sigseq[:,:],xs,freqs] = i
out[(a,p)] = [sigs[:,:],sigsmf[:,:],sigseq[:,:],xs,freqs]
print a, p, sigs[0,0]
Works like a charm, much easier to implement!
Thanks Ferdinand! I'm not sure how, but I think we can close the question now!
Pool.map()interface that handles all the boring details for you:results = pool.map(runprocess, input_parameters). See docs.python.org/library/… – Ferdinand Beyer Oct 25 '11 at 14:29