Forum: ScientificPython 2.7
Posted by: Konrad Hinsen
Content: A new development release of ScientificPython is available now. It contains a new module for parallel computing using a master-slave model: a master process defines computational tasks, and any number of slave processes execute them. The main advantages of this approach are simplicity and the possibility to run a variable number of slave processes. The new module is based on Pyro (pyro.sourceforge.net), which must be installed as well. | Latest News
|


DistributedComputing missing? [ Reply ] By: Tim Heaney on 2006-11-18 03:37 | [forum:1224] |
Are you sure the DistributedComputing module made it into the 2.7 tarball? I don't seem to have it. >>> import Scientific >>> import Scientific.DistributedComputing Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named DistributedComputing If i run find . -name "*DistributedComputing*" in the ScientificPython-2.7 directory, it only shows things in the Doc directory. |