Archive for the ‘parallel programming’ Category
forget MPI: http://showmedo.com/videotutorials/series?name=N49qyIFOh
Filed under: parallel programming, python | Leave a Comment
Stop ipcluster from a script
19Feb10
Ipcluster is easy to start but not trivial to stop from a script, after having finished the processing, here’s the solution: from IPython.kernel import client mec = client.MultiEngineClient() mec.kill(controller=True)
Filed under: parallel programming, python | Leave a Comment