Hi all,<br><br>Just trying to figure out whether something is wrong with my installation: I'm using mpi4py with mpich, on a machine with two quad-core 3.0Ghz intel processors. The following script takes 7.21s (wall time) with seven IPEngines, with almost all of the time spent in the scatterAll() operation:
<br><br><br>from numpy import *<br>from ipython1 import *<br>import ipython1.kernel.api as kernel<br>rc = kernel.RemoteController(('<a href="http://127.0.0.1">127.0.0.1</a>',10105))<br><br>C=ones((5000,1000),dtype=float)
<br>rc.scatterAll('C',C)<br><br>rc.resetAll()<br><br><br>Is this fairly typical, and if not is there anything I can do to speed up the pushing and pulling?<br><br>Thanks,<br>Anand Patil<br>