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-8.4.0.tar.gz
(6.8 MB
view details)
Built Distribution
ipyparallel-8.4.0-py3-none-any.whl
(297.7 kB
view details)
File details
Details for the file ipyparallel-8.4.0.tar.gz
.
File metadata
- Download URL: ipyparallel-8.4.0.tar.gz
- Upload date:
- Size: 6.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
25e636f2b596d16931e16a49d8b9dfa37fbd3eb7e98a6a5ce889ef4e324021ff
|
|
MD5 |
ecda217328b63cbea0baa685843dffbf
|
|
BLAKE2b-256 |
79b5a04076d27b40e28729dc3a39b2199c4dae9f3b80fed63b2410fa6d859b2b
|
File details
Details for the file ipyparallel-8.4.0-py3-none-any.whl
.
File metadata
- Download URL: ipyparallel-8.4.0-py3-none-any.whl
- Upload date:
- Size: 297.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0ab40787d2e2b6833332eb84c9fe12d32a94bbc1e12fbb5411af8f42b9996b96
|
|
MD5 |
d90cc2ad6c270427c1e183b6862dd805
|
|
BLAKE2b-256 |
18b67900afa3552518a527cb0b8d03a9a532b03aacef7de16bbc2b27dd3614d5
|