Skip to content

Commit

Permalink
Merge pull request #12300 from kersulis/patch-2
Browse files Browse the repository at this point in the history
Mention @Everywhere in pmap documentation
  • Loading branch information
jakebolewski committed Jul 27, 2015
2 parents bc9b435 + 8645e7c commit 22c86f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/manual/parallel-computing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ process that owns ``r``, so the :func:`fetch` will be a no-op.
as a :ref:`macro <man-macros>`. It is possible to define your
own such constructs.)

.. _man-parallel-computing-code-availability:

Code Availability and Loading Packages
--------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion doc/stdlib/parallel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ General Parallel Computing Support
.. function:: pmap(f, lsts...; err_retry=true, err_stop=false, pids=workers())

Transform collections ``lsts`` by applying ``f`` to each element in parallel.
(Note that ``f`` must be made available to all worker processes; see :ref:`Code Availability and Loading Packages <man-parallel-computing-code-availability>` for details.)
If ``nprocs() > 1``, the calling process will be dedicated to assigning tasks.
All other available processes will be used as parallel workers, or on the processes specified by ``pids``.

Expand Down Expand Up @@ -421,4 +422,3 @@ Cluster Manager Interface
Called by cluster managers using custom transports. It should be called when the custom transport implementation receives the
first message from a remote worker. The custom transport must manage a logical connection to the remote worker and provide two
AsyncStream objects, one for incoming messages and the other for messages addressed to the remote worker.

0 comments on commit 22c86f6

Please sign in to comment.