Metadata-Version: 1.0
Name: pyumpf
Version: 0.1.0
Summary: Python Unified Multiprocessing Parallel Functions
Home-page: https://github.com/afaulconbridge/PyGA
Author: Adam Faulconbridge
Author-email: afaulconbridge@googlemail.com
License: UNKNOWN
Description: pyumpf
        ======
        
        Python Unified Multiprocessing Parallel Functions
        
        This is a small library that aims to bring together the standard library map/reduce functions
        with both the multiprocessing module in the standard library and the PP module (www.parallelpython.com).
        
        Each has their own niche, and there own advantages and disadvantages. The map/reduce functions
        in the standard library are good for implementing a functional paradigm, but are limited by the GIL
        to only run one task at a time. The multiprocessing module is good for single machines with multiple
        CPUs, but can be awkward to debug and use. The PP module is great for large clusters, but is even more
        awkward to debug and use. Plus all of these have different APIs, and so cannot be drop-in replacemenets.
        
        To install, use easy_install pyumpf.
        
        For an example, see umpf_test.py Note that this example gives PP a poor performance. This is because 
        it is running on a single machine, and this example is too small to make best use of the parallelism.
        Ideally, tasks should run for several seconds each and have easily pickleable arguments and returned
        values.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
