Metadata-Version: 1.1
Name: mpi4py
Version: 1.3
Summary: MPI for Python
Home-page: http://mpi4py.googlecode.com/
Author: Lisandro Dalcin
Author-email: dalcinl@gmail.com
License: BSD
Download-URL: http://mpi4py.googlecode.com/files/mpi4py-1.3.tar.gz
Description: This package provides Python bindings for the **Message Passing
        Interface** (MPI) standard. It is implemented on top of the
        MPI-1/MPI-2 specification and exposes an API which grounds on the
        standard MPI-2 C++ bindings.
        
        This package supports:
        
        + Convenient communication of any *picklable* Python object
        
          - point-to-point (send & receive)
          - collective (broadcast, scatter & gather, reduction)
        
        + Fast communication of Python object exposing the *Python buffer
          interface* (NumPy arrays, builtin bytes/string/array objects)
        
          - point-to-point (blocking/nonbloking/persistent send & receive)
          - collective (broadcast, block/vector scatter & gather, reduction)
        
        + Process groups and communication domains
        
          - Creation of new intra/inter communicators
          - Cartesian & graph topologies
        
        + Parallel input/output:
        
          - read & write
          - blocking/nonbloking & collective/noncollective
          - individual/shared file pointers & explicit offset
        
        + Dynamic process management
        
          - spawn & spawn multiple
          - accept/connect
          - name publishing & lookup
        
        + One-sided operations (put, get, accumulate)
        
        You can install the `in-development version
        <hg+http://code.google.com/p/mpi4py#egg=mpi4py-dev>`_
        of mpi4py with::
        
          $ pip install mpi4py==dev
        
        or::
        
          $ easy_install mpi4py==dev
Keywords: scientific computing,parallel computing,message passing,MPI
Platform: Mac OS X
Platform: Linux
Platform: Solaris
Platform: Unix
Platform: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX :: SunOS/Solaris
Classifier: Operating System :: Unix
Classifier: Programming Language :: C
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Requires: pickle
Provides: mpi4py
Provides: mpi4py.dl
Provides: mpi4py.rc
Provides: mpi4py.MPI
Provides: mpi4py.MPE
