Interactive Parallel Computing with IPython
Project description
Interactive Parallel Computing with IPython
IPython Parallel (ipyparallel
) is a Python package and collection of CLI scripts for controlling clusters of IPython processes, built on the Jupyter protocol.
IPython Parallel provides the following commands:
- ipcluster - start/stop/list clusters
- ipcontroller - start a controller
- ipengine - start an engine
Install
Install IPython Parallel:
pip install ipyparallel
This will install and enable the IPython Parallel extensions for Jupyter Notebook and (as of 7.0) Jupyter Lab 3.0.
Run
Start a cluster:
ipcluster start
Use it from Python:
import os
import ipyparallel as ipp
cluster = ipp.Cluster(n=4)
with cluster as rc:
ar = rc[:].apply_async(os.getpid)
pid_map = ar.get_dict()
See the docs for more info.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ipyparallel-7.0.0.tar.gz
(4.0 MB
view details)
Built Distribution
ipyparallel-7.0.0-py3-none-any.whl
(384.6 kB
view details)
File details
Details for the file ipyparallel-7.0.0.tar.gz
.
File metadata
- Download URL: ipyparallel-7.0.0.tar.gz
- Upload date:
- Size: 4.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7524e80a40a50e24f2529d17edf002039b71ab620f82fdc6ee0b492bf1338544
|
|
MD5 |
96096be0cf37f9e7e31f350fa2ef0c08
|
|
BLAKE2b-256 |
451ec74d593c7d65880f7d4fd3b16af6f3ddd32296508320ce45b33c19fb80db
|
File details
Details for the file ipyparallel-7.0.0-py3-none-any.whl
.
File metadata
- Download URL: ipyparallel-7.0.0-py3-none-any.whl
- Upload date:
- Size: 384.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9e0fc44a8f77d960a6108b6512b16c945cef460e4d9b9e563edaf82d421728f6
|
|
MD5 |
f9ea9419327f1f74d6a65063f8a0eb8d
|
|
BLAKE2b-256 |
41141393119857eaf0e1308f0cef495cf77b534a599e5d2702c252e5652b7014
|