ppft


Nameppft JSON
Version 1.7.6.8 PyPI version JSON
download
home_pagehttps://github.com/uqfoundation/ppft
Summarydistributed and parallel Python
upload_time2024-01-28 00:51:42
maintainerMike McKerns
docs_urlNone
authorMike McKerns
requires_python>=3.8
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            -------------------------------------
ppft: distributed and parallel Python
-------------------------------------

About Ppft
==========

``ppft`` is a friendly fork of Parallel Python (``pp``). ``ppft`` extends Parallel Python to provide packaging and distribution with ``pip`` and ``setuptools``, support for Python 3, and enhanced serialization using ``dill.source``. ``ppft`` uses Parallel Python to provide mechanisms for the parallel execution of Python code on SMP (systems with multiple processors or cores) and clusters (computers connected via network).

Software written in Python finds applications in a broad range of the categories including business logic, data analysis, and scientific calculations. This together with wide availability of SMP computers (multi-processor or multi-core) and clusters (computers connected via network) on the market create the demand in parallel execution of Python code.

The most common way to write parallel applications for SMP computers is to use threads. However, the Python interpreter uses the GIL (Global Interpreter Lock) for internal bookkeeping, where the GIL only allows one Python byte-code instruction to execute at a time, even on an SMP computer. Parallel Python overcomes this limitation, and provides a simple way to write parallel Python applications. Internally, processes and IPC (Inter Process Communications) are used to organize parallel computations. Parallel Python is written so that the details and complexity of IPC are handled internally, and the calling application just submits jobs and retrieves the results. Software written with Parallel Python works in parallel on many computers connected via a local network or the Internet. Cross-platform portability and dynamic load-balancing allows Parallel Python to parallelize computations efficiently even on heterogeneous and multi-platform clusters. Visit http://www.parallelpython.com for further information on Parallel Python.

``ppft`` is part of ``pathos``, a Python framework for heterogeneous computing.
``ppft`` is in active development, so any user feedback, bug reports, comments,
or suggestions are highly appreciated.  A list of issues is located at https://github.com/uqfoundation/ppft/issues, with a legacy list maintained at https://uqfoundation.github.io/project/pathos/query.


Major Features
==============

``ppft`` provides:

    - parallel execution of Python code on SMP and clusters
    - easy-to-understand job-based parallelization
    - automatic detection of the number of effective processors
    - dynamic processor allocation (at runtime)
    - low overhead for jobs with the same function (through transparent caching)
    - dynamic load balancing (jobs are distributed at runtime)
    - fault-tolerance (if a node fails, tasks are rescheduled on the others)
    - auto-discovery of computational resources
    - dynamic allocation of computational resources
    - SHA based authentication for network connections
    - enhanced serialization, using ``dill.source``


Current Release
===============

The latest released version of ``ppft`` is available from:

    https://pypi.org/project/ppft

``ppft`` is distributed under a 3-clause BSD license, and is a fork of ``pp-1.6.6``.


Development Version
===================

You can get the latest development version with all the shiny new features at:

    https://github.com/uqfoundation

If you have a new contribution, please submit a pull request.


Installation
============

``ppft`` can be installed with ``pip``::

    $ pip install ppft

To include enhanced serialization, using ``dill.source``, install::

    $ pip install ppft[dill]

If Parallel Python is already installed, it should be uninstalled before ``ppft`` is installed -- otherwise, ``import pp`` may point to the original and not to the ``ppft`` fork.


Requirements
============

``ppft`` requires:

    - ``python`` (or ``pypy``), **>=3.8**
    - ``setuptools``, **>=42**

Optional requirements:

    - ``dill``, **>=0.3.8**


Basic Usage
===========

``ppft`` is a fork of the Parallel Python package (``pp``) that has been
converted from Python 2 to Python 3, made PEP 517 compliant, and augmented
with ``dill.source``.  For simple parallel execution, first create a job
``Server`` where the number nodes available is autodetected::

    >>> import ppft as pp
    >>> job_server = pp.Server()

The number of nodes can be specified by passing an int as the first argument
when creating the server (i.e. ``Server(4)`` creates a server with four nodes).
The server uses ``submit`` to execute jobs in parallel. ``submit`` takes a
function, a tuple of the arguments to pass to the function, a tuple of any
functions used but not imported in the function, and a tuple of any modules
required to produce the function:: 

    >>> import math
    >>> f1 = job_server.submit(math.sin, (math.pi/2,), (), ('math',))
    >>> f2 = job_server.submit(min, (3.2, 10.0, 7.5), (), ())
    >>> f3 = job_server.submit(sum, ([1,2,3],), (), ())

The functions are serialized by ``dill.source`` (as opposed to ``dill``), by
extracting and passing the source code to the server. The server compiles
and executes the source code, and then calls the function with the arguments
passed in the tuple. Any function and module dependencies are imported
before ``exec`` is called on the source code. Results are retrieved by
calling the object returned from ``submit``::

    >>> f1()
    1.0
    >>> f2()
    3.2
    >>> f3()
    6

Job server execution statistics can be printed with::

    >>> job_server.print_stats()
    Job execution statistics:
     job count | % of all jobs | job time sum | time per job | job server
             3 |        100.00 |       0.0051 |     0.001684 | local
    Time elapsed since server creation 148.48280715942383
    0 active tasks, 4 cores

``ppft`` also can execute jobs on remote computational nodes, if a ``ppserver``
is first started on the node. Here the ``ppserver`` is started on 127.0.0.1,
and will listen on port 35000::

    $ ppserver -a -p 35000

Then, locally, instantiate a ``Server`` with the connection information
for the remote node, submit some jobs, and retrieve the results::

    >>> job_server = pp.Server(ppservers=('127.0.0.1:35000',))
    >>> f1 = job_server.submit(math.sin, (math.pi/2,), (), ('math',))
    >>> f2 = job_server.submit(math.sin, (0,), (), ('math',))
    >>> f3 = job_server.submit(math.sin, (-math.pi/2,), (), ('math',))
    >>> f1(),f2(),f3()
    (1.0, 0.0, -1.0)
    >>> 

However, the stats show that all of the jobs were run locally::

    >>> job_server.print_stats()
    Job execution statistics:
     job count | % of all jobs | job time sum | time per job | job server
             3 |        100.00 |       0.0024 |     0.000812 | local
    Time elapsed since server creation 31.755322217941284
    0 active tasks, 4 cores

This is due because we don't specify the number of nodes. The number of nodes
are specified both in the ``ppserver`` and in the local job ``Server``. Thus,
the above is actually "autobalance" between 4 local nodes and 4 remote nodes.
The former is naturally going to be preferred; however, if the local server is
flooded with jobs, some will get sent to the remote ``ppserver``, and that will
be reflected in the stats.  To run all jobs remotely, set the number of local
nodes to zero::

    >>> job_server = pp.Server(0, ppservers=('127.0.0.1:35000',))
    >>> f1 = job_server.submit(math.sin, (math.pi/2,), (), ('math',))
    >>> f2 = job_server.submit(math.sin, (0,), (), ('math',))
    >>> f3 = job_server.submit(math.sin, (-math.pi/2,), (), ('math',))
    >>> f1(),f2(),f3()
    (1.0, 0.0, -1.0)
    >>> job_server.print_stats()
    Job execution statistics:
     job count | % of all jobs | job time sum | time per job | job server
             3 |        100.00 |       0.0016 |     0.000518 | 127.0.0.1:35000
    Time elapsed since server creation 15.123202800750732
    0 active tasks, 0 cores

>>> 

Get help on the command line options for ``ppserver``::

    $ ppserver --help
    Parallel Python Network Server (pp-1.7.6.8)
    Usage: ppserver [-hdar] [-f format] [-n proto] [-c config_path] [-i interface] [-b broadcast] [-p port] [-w nworkers] [-s secret] [-t seconds] [-k seconds] [-P pid_file]

    Options: 
    -h                 : this help message
    -d                 : set log level to debug
    -f format          : log format
    -a                 : enable auto-discovery service
    -r                 : restart worker process after each task completion
    -n proto           : protocol number for pickle module
    -c path            : path to config file
    -i interface       : interface to listen
    -b broadcast       : broadcast address for auto-discovery service
    -p port            : port to listen
    -w nworkers        : number of workers to start
    -s secret          : secret for authentication
    -t seconds         : timeout to exit if no connections with clients exist
    -k seconds         : socket timeout in seconds
    -P pid_file        : file to write PID to

    To print server stats send SIGUSR1 to its main process (unix only). 

    Due to the security concerns always use a non-trivial secret key.
    Secret key set by -s switch will override secret key assigned by
    pp_secret variable in .pythonrc.py


More Information
================

Probably the best way to get started is to look at the documentation at
http://ppft.rtfd.io. Also, you can see a set of example scripts in
``ppft.tests``. You can run the test suite with ``python -m ppft.tests``.
``ppft`` will create and execute jobs on local workers (automatically created
using ``python -u -m ppft``). Additionally, remote servers can be created with 
``ppserver`` (or ``python -m ppft.server``), and then jobs can be distributed
to remote workers. See ``--help`` for more details on how to configure a server.
Please feel free to submit a ticket on github, or ask a question on
stackoverflow (**@Mike McKerns**).  If you would like to share how you use
``ppft`` in your work, please send an email (to **mmckerns at uqfoundation dot org**).


Citation
========

If you use ``ppft`` to do research that leads to publication, we ask that you
acknowledge use of ``ppft`` by citing the following in your publication::

    M.M. McKerns, L. Strand, T. Sullivan, A. Fang, M.A.G. Aivazis,
    "Building a framework for predictive science", Proceedings of
    the 10th Python in Science Conference, 2011;
    http://arxiv.org/pdf/1202.1056

    Michael McKerns and Michael Aivazis,
    "pathos: a framework for heterogeneous computing", 2010- ;
    https://uqfoundation.github.io/project/pathos

Please see https://uqfoundation.github.io/project/pathos or
http://arxiv.org/pdf/1202.1056 for further information.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/uqfoundation/ppft",
    "name": "ppft",
    "maintainer": "Mike McKerns",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "mmckerns@uqfoundation.org",
    "keywords": "",
    "author": "Mike McKerns",
    "author_email": "mmckerns@uqfoundation.org",
    "download_url": "https://files.pythonhosted.org/packages/f8/c1/6aa25972c1910cf120a6c82bf2fc67edfdd1375c26f75048aae769caccc1/ppft-1.7.6.8.tar.gz",
    "platform": "Linux",
    "description": "-------------------------------------\nppft: distributed and parallel Python\n-------------------------------------\n\nAbout Ppft\n==========\n\n``ppft`` is a friendly fork of Parallel Python (``pp``). ``ppft`` extends Parallel Python to provide packaging and distribution with ``pip`` and ``setuptools``, support for Python 3, and enhanced serialization using ``dill.source``. ``ppft`` uses Parallel Python to provide mechanisms for the parallel execution of Python code on SMP (systems with multiple processors or cores) and clusters (computers connected via network).\n\nSoftware written in Python finds applications in a broad range of the categories including business logic, data analysis, and scientific calculations. This together with wide availability of SMP computers (multi-processor or multi-core) and clusters (computers connected via network) on the market create the demand in parallel execution of Python code.\n\nThe most common way to write parallel applications for SMP computers is to use threads. However, the Python interpreter uses the GIL (Global Interpreter Lock) for internal bookkeeping, where the GIL only allows one Python byte-code instruction to execute at a time, even on an SMP computer. Parallel Python overcomes this limitation, and provides a simple way to write parallel Python applications. Internally, processes and IPC (Inter Process Communications) are used to organize parallel computations. Parallel Python is written so that the details and complexity of IPC are handled internally, and the calling application just submits jobs and retrieves the results. Software written with Parallel Python works in parallel on many computers connected via a local network or the Internet. Cross-platform portability and dynamic load-balancing allows Parallel Python to parallelize computations efficiently even on heterogeneous and multi-platform clusters. Visit http://www.parallelpython.com for further information on Parallel Python.\n\n``ppft`` is part of ``pathos``, a Python framework for heterogeneous computing.\n``ppft`` is in active development, so any user feedback, bug reports, comments,\nor suggestions are highly appreciated.  A list of issues is located at https://github.com/uqfoundation/ppft/issues, with a legacy list maintained at https://uqfoundation.github.io/project/pathos/query.\n\n\nMajor Features\n==============\n\n``ppft`` provides:\n\n    - parallel execution of Python code on SMP and clusters\n    - easy-to-understand job-based parallelization\n    - automatic detection of the number of effective processors\n    - dynamic processor allocation (at runtime)\n    - low overhead for jobs with the same function (through transparent caching)\n    - dynamic load balancing (jobs are distributed at runtime)\n    - fault-tolerance (if a node fails, tasks are rescheduled on the others)\n    - auto-discovery of computational resources\n    - dynamic allocation of computational resources\n    - SHA based authentication for network connections\n    - enhanced serialization, using ``dill.source``\n\n\nCurrent Release\n===============\n\nThe latest released version of ``ppft`` is available from:\n\n    https://pypi.org/project/ppft\n\n``ppft`` is distributed under a 3-clause BSD license, and is a fork of ``pp-1.6.6``.\n\n\nDevelopment Version\n===================\n\nYou can get the latest development version with all the shiny new features at:\n\n    https://github.com/uqfoundation\n\nIf you have a new contribution, please submit a pull request.\n\n\nInstallation\n============\n\n``ppft`` can be installed with ``pip``::\n\n    $ pip install ppft\n\nTo include enhanced serialization, using ``dill.source``, install::\n\n    $ pip install ppft[dill]\n\nIf Parallel Python is already installed, it should be uninstalled before ``ppft`` is installed -- otherwise, ``import pp`` may point to the original and not to the ``ppft`` fork.\n\n\nRequirements\n============\n\n``ppft`` requires:\n\n    - ``python`` (or ``pypy``), **>=3.8**\n    - ``setuptools``, **>=42**\n\nOptional requirements:\n\n    - ``dill``, **>=0.3.8**\n\n\nBasic Usage\n===========\n\n``ppft`` is a fork of the Parallel Python package (``pp``) that has been\nconverted from Python 2 to Python 3, made PEP 517 compliant, and augmented\nwith ``dill.source``.  For simple parallel execution, first create a job\n``Server`` where the number nodes available is autodetected::\n\n    >>> import ppft as pp\n    >>> job_server = pp.Server()\n\nThe number of nodes can be specified by passing an int as the first argument\nwhen creating the server (i.e. ``Server(4)`` creates a server with four nodes).\nThe server uses ``submit`` to execute jobs in parallel. ``submit`` takes a\nfunction, a tuple of the arguments to pass to the function, a tuple of any\nfunctions used but not imported in the function, and a tuple of any modules\nrequired to produce the function:: \n\n    >>> import math\n    >>> f1 = job_server.submit(math.sin, (math.pi/2,), (), ('math',))\n    >>> f2 = job_server.submit(min, (3.2, 10.0, 7.5), (), ())\n    >>> f3 = job_server.submit(sum, ([1,2,3],), (), ())\n\nThe functions are serialized by ``dill.source`` (as opposed to ``dill``), by\nextracting and passing the source code to the server. The server compiles\nand executes the source code, and then calls the function with the arguments\npassed in the tuple. Any function and module dependencies are imported\nbefore ``exec`` is called on the source code. Results are retrieved by\ncalling the object returned from ``submit``::\n\n    >>> f1()\n    1.0\n    >>> f2()\n    3.2\n    >>> f3()\n    6\n\nJob server execution statistics can be printed with::\n\n    >>> job_server.print_stats()\n    Job execution statistics:\n     job count | % of all jobs | job time sum | time per job | job server\n             3 |        100.00 |       0.0051 |     0.001684 | local\n    Time elapsed since server creation 148.48280715942383\n    0 active tasks, 4 cores\n\n``ppft`` also can execute jobs on remote computational nodes, if a ``ppserver``\nis first started on the node. Here the ``ppserver`` is started on 127.0.0.1,\nand will listen on port 35000::\n\n    $ ppserver -a -p 35000\n\nThen, locally, instantiate a ``Server`` with the connection information\nfor the remote node, submit some jobs, and retrieve the results::\n\n    >>> job_server = pp.Server(ppservers=('127.0.0.1:35000',))\n    >>> f1 = job_server.submit(math.sin, (math.pi/2,), (), ('math',))\n    >>> f2 = job_server.submit(math.sin, (0,), (), ('math',))\n    >>> f3 = job_server.submit(math.sin, (-math.pi/2,), (), ('math',))\n    >>> f1(),f2(),f3()\n    (1.0, 0.0, -1.0)\n    >>> \n\nHowever, the stats show that all of the jobs were run locally::\n\n    >>> job_server.print_stats()\n    Job execution statistics:\n     job count | % of all jobs | job time sum | time per job | job server\n             3 |        100.00 |       0.0024 |     0.000812 | local\n    Time elapsed since server creation 31.755322217941284\n    0 active tasks, 4 cores\n\nThis is due because we don't specify the number of nodes. The number of nodes\nare specified both in the ``ppserver`` and in the local job ``Server``. Thus,\nthe above is actually \"autobalance\" between 4 local nodes and 4 remote nodes.\nThe former is naturally going to be preferred; however, if the local server is\nflooded with jobs, some will get sent to the remote ``ppserver``, and that will\nbe reflected in the stats.  To run all jobs remotely, set the number of local\nnodes to zero::\n\n    >>> job_server = pp.Server(0, ppservers=('127.0.0.1:35000',))\n    >>> f1 = job_server.submit(math.sin, (math.pi/2,), (), ('math',))\n    >>> f2 = job_server.submit(math.sin, (0,), (), ('math',))\n    >>> f3 = job_server.submit(math.sin, (-math.pi/2,), (), ('math',))\n    >>> f1(),f2(),f3()\n    (1.0, 0.0, -1.0)\n    >>> job_server.print_stats()\n    Job execution statistics:\n     job count | % of all jobs | job time sum | time per job | job server\n             3 |        100.00 |       0.0016 |     0.000518 | 127.0.0.1:35000\n    Time elapsed since server creation 15.123202800750732\n    0 active tasks, 0 cores\n\n>>> \n\nGet help on the command line options for ``ppserver``::\n\n    $ ppserver --help\n    Parallel Python Network Server (pp-1.7.6.8)\n    Usage: ppserver [-hdar] [-f format] [-n proto] [-c config_path] [-i interface] [-b broadcast] [-p port] [-w nworkers] [-s secret] [-t seconds] [-k seconds] [-P pid_file]\n\n    Options: \n    -h                 : this help message\n    -d                 : set log level to debug\n    -f format          : log format\n    -a                 : enable auto-discovery service\n    -r                 : restart worker process after each task completion\n    -n proto           : protocol number for pickle module\n    -c path            : path to config file\n    -i interface       : interface to listen\n    -b broadcast       : broadcast address for auto-discovery service\n    -p port            : port to listen\n    -w nworkers        : number of workers to start\n    -s secret          : secret for authentication\n    -t seconds         : timeout to exit if no connections with clients exist\n    -k seconds         : socket timeout in seconds\n    -P pid_file        : file to write PID to\n\n    To print server stats send SIGUSR1 to its main process (unix only). \n\n    Due to the security concerns always use a non-trivial secret key.\n    Secret key set by -s switch will override secret key assigned by\n    pp_secret variable in .pythonrc.py\n\n\nMore Information\n================\n\nProbably the best way to get started is to look at the documentation at\nhttp://ppft.rtfd.io. Also, you can see a set of example scripts in\n``ppft.tests``. You can run the test suite with ``python -m ppft.tests``.\n``ppft`` will create and execute jobs on local workers (automatically created\nusing ``python -u -m ppft``). Additionally, remote servers can be created with \n``ppserver`` (or ``python -m ppft.server``), and then jobs can be distributed\nto remote workers. See ``--help`` for more details on how to configure a server.\nPlease feel free to submit a ticket on github, or ask a question on\nstackoverflow (**@Mike McKerns**).  If you would like to share how you use\n``ppft`` in your work, please send an email (to **mmckerns at uqfoundation dot org**).\n\n\nCitation\n========\n\nIf you use ``ppft`` to do research that leads to publication, we ask that you\nacknowledge use of ``ppft`` by citing the following in your publication::\n\n    M.M. McKerns, L. Strand, T. Sullivan, A. Fang, M.A.G. Aivazis,\n    \"Building a framework for predictive science\", Proceedings of\n    the 10th Python in Science Conference, 2011;\n    http://arxiv.org/pdf/1202.1056\n\n    Michael McKerns and Michael Aivazis,\n    \"pathos: a framework for heterogeneous computing\", 2010- ;\n    https://uqfoundation.github.io/project/pathos\n\nPlease see https://uqfoundation.github.io/project/pathos or\nhttp://arxiv.org/pdf/1202.1056 for further information.\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "distributed and parallel Python",
    "version": "1.7.6.8",
    "project_urls": {
        "Bug Tracker": "https://github.com/uqfoundation/ppft/issues",
        "Documentation": "http://ppft.rtfd.io",
        "Download": "https://pypi.org/project/ppft/#files",
        "Homepage": "https://github.com/uqfoundation/ppft",
        "Source Code": "https://github.com/uqfoundation/ppft"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fffa5160c7d2fb1d4f2b83cba7a40f0eb4b015b78f6973b7ab6b2e73c233cfdc",
                "md5": "306960b83e473af4c9fc9a7ebdb885fd",
                "sha256": "de2dd4b1b080923dd9627fbdea52649fd741c752fce4f3cf37e26f785df23d9b"
            },
            "downloads": -1,
            "filename": "ppft-1.7.6.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "306960b83e473af4c9fc9a7ebdb885fd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 56755,
            "upload_time": "2024-01-28T00:51:40",
            "upload_time_iso_8601": "2024-01-28T00:51:40.124809Z",
            "url": "https://files.pythonhosted.org/packages/ff/fa/5160c7d2fb1d4f2b83cba7a40f0eb4b015b78f6973b7ab6b2e73c233cfdc/ppft-1.7.6.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8c16aa25972c1910cf120a6c82bf2fc67edfdd1375c26f75048aae769caccc1",
                "md5": "e8dbafa2d27ffe0a549fb3cbff308a08",
                "sha256": "76a429a7d7b74c4d743f6dba8351e58d62b6432ed65df9fe204790160dab996d"
            },
            "downloads": -1,
            "filename": "ppft-1.7.6.8.tar.gz",
            "has_sig": false,
            "md5_digest": "e8dbafa2d27ffe0a549fb3cbff308a08",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 136481,
            "upload_time": "2024-01-28T00:51:42",
            "upload_time_iso_8601": "2024-01-28T00:51:42.218340Z",
            "url": "https://files.pythonhosted.org/packages/f8/c1/6aa25972c1910cf120a6c82bf2fc67edfdd1375c26f75048aae769caccc1/ppft-1.7.6.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-28 00:51:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "uqfoundation",
    "github_project": "ppft",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "tox": true,
    "lcname": "ppft"
}
        
Elapsed time: 0.17221s