jacobBaumbach / ipyparallel

Interactive Parallel Computing in Python

Home Page:http://ipyparallel.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interactive Parallel Computing with IPython

ipyparallel is the new home of IPython.parallel.

Install

Install ipyparallel:

pip install ipyparallel

To enable the IPython Clusters tab in Jupyter Notebook:

ipcluster nbextension enable

To disable it again:

ipcluster nbextension disable

See the documentation on configuring the notebook server to find your config or setup your initial jupyter_notebook_config.py.

Run

Start a cluster:

ipcluster start

Use it from Python:

import os
import ipyparallel as ipp

rc = ipp.Client()
ar = rc[:].apply_async(os.getpid)
pid_map = ar.get_dict()

See the docs for more info.

About

Interactive Parallel Computing in Python

http://ipyparallel.readthedocs.org/

License:Other


Languages

Language:Python 98.6%Language:JavaScript 1.3%Language:CSS 0.0%