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.1.tar.gz
(4.0 MB
view details)
Built Distribution
ipyparallel-7.0.1-py3-none-any.whl
(384.6 kB
view details)
File details
Details for the file ipyparallel-7.0.1.tar.gz
.
File metadata
- Download URL: ipyparallel-7.0.1.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 |
b4b0b104db2de027e8e778205ad61fd1357f566e5afcddeab28a8ef0986c9f5a
|
|
MD5 |
250b4f755dee020fc2694314927933da
|
|
BLAKE2b-256 |
50effc7c915a77b90cf1a42b141aa29720a7c2b1f0058da5ed645474bed3d514
|
File details
Details for the file ipyparallel-7.0.1-py3-none-any.whl
.
File metadata
- Download URL: ipyparallel-7.0.1-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 |
dc881c70ed43bb61edeb34a3a0ef59da7f95ae5f926fdbf9f8ee70249fdbd284
|
|
MD5 |
a90389964ce40b8c00783a4b295e0c2a
|
|
BLAKE2b-256 |
8869393d989adf5086a3e724159d762f20cbfdcd31fbf3d6e0ec65647c90f55b
|