|
Project Information
Featured
Downloads
Links
|
Welcome to Playdoh !Playdoh is a pure Python library for distributing computations across the free computing units (CPUs and GPUs) available in a small network of multicore computers. Playdoh supports independent (embarassingly) parallel problems as well as loosely coupled tasks such as global optimizations, Monte Carlo simulations and numerical integration of partial differential equations. It is designed to be lightweight and easy-to-use and should be of interest to scientists wanting to turn their lab computers into a small cluster at no cost. Features
import playdoh result = playdoh.map(lambda x: x * x, [1, 2], cpu=2) # result == [1, 4]
DownloadYou can download the latest version of Playdoh here: Playdoh 0.3.1. DocumentationThe documentation can be found here: Documentation of Playdoh. PreprintThe following paper has just been accepted for publication: Rossant C, Fontaine B, Goodman DFM (2011). Playdoh: a lightweight Python package for distributed computing and optimisation. Journal of Computational Science (in press) The preprint can be found here. Abstract Parallel computing is now an essential paradigm for high performance scientific computing. Most existing hardware and software solutions are expensive or difficult to use. We developed Playdoh, a Python library for distributing computations across the free computing units available in a small network of multicore computers. Playdoh supports independent and loosely coupled parallel problems such as global optimisations, Monte Carlo simulations and numerical integration of partial differential equations. It is designed to be lightweight and easy to use and should be of interest to scientists wanting to turn their lab computers into a small cluster at no cost. ContributePlaydoh is an open-source project and anyone is welcome to contribute to the project. Here are some info about the source code.
HelpPlease report any issue in the Google group. |