1
vote
1answer
48 views

Parallelize function on dictionary in IPython

Up till now, I have parallelized functions by mapping them on to lists that are distributed out to the various clusters using the function map_sync(function, list) . Now, I need to run a function on ...
3
votes
1answer
171 views

IPython.parallel not using multicore?

I am experimenting with IPython.parallel and just want to launch several shell command on different engines. I have the following Notebook: Cell 0: from IPython.parallel import Client client = ...