Skip to content

Commit 67ee1e6

Browse files
jdmcbrmrocklin
authored andcommitted
Update parallelism.rst (#366)
IPython.parallel deprecated in favor of ipyparallel.
1 parent 9035e76 commit 67ee1e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/source/parallelism.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ by ensuring easy serialization of ``toolz`` functions and providing
66
architecture-agnostic parallel algorithms.
77

88
In practice ``toolz`` is developed against ``multiprocessing`` and
9-
``IPython.parallel``.
9+
``ipyparallel``.
1010

1111

1212
Serialization
@@ -28,7 +28,7 @@ Example with parallel map
2828

2929
Most parallel processing tasks may be significantly accelerated using only a
3030
parallel map operation. A number of high quality parallel map operations exist
31-
in other libraries, notably ``multiprocessing``, ``IPython.parallel``, and
31+
in other libraries, notably ``multiprocessing``, ``ipyparallel``, and
3232
``threading`` (if your operation is not processor bound).
3333

3434
In the example below we extend our wordcounting solution with a parallel map.
@@ -66,7 +66,7 @@ multiprocessing, to distributed computation all with the same domain code.
6666
# pmap = p.map
6767
6868
# Finish with distributed parallel map for big data
69-
from IPython.parallel import Client
69+
from ipyparallel import Client
7070
p = Client()[:]
7171
pmap = p.map_sync
7272
@@ -92,4 +92,4 @@ parallel map function.
9292

9393
In particular we provide a parallel ``fold`` in ``toolz.sandbox.parallel.fold``.
9494
This fold can work equally well with ``multiprocessing.Pool.map``
95-
``threading.Pool.map`` or ``IPython.parallel``'s ``map_async``.
95+
``threading.Pool.map`` or ``ipyparallel``'s ``map_async``.

0 commit comments

Comments
 (0)