@@ -6,7 +6,7 @@ by ensuring easy serialization of ``toolz`` functions and providing
66architecture-agnostic parallel algorithms.
77
88In practice ``toolz `` is developed against ``multiprocessing `` and
9- ``IPython.parallel ``.
9+ ``ipyparallel ``.
1010
1111
1212Serialization
@@ -28,7 +28,7 @@ Example with parallel map
2828
2929Most parallel processing tasks may be significantly accelerated using only a
3030parallel 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
3434In 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
9393In particular we provide a parallel ``fold `` in ``toolz.sandbox.parallel.fold ``.
9494This 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