From adc1c83cc3ee599604998c5d56991826ca2acc9f Mon Sep 17 00:00:00 2001 From: Jiahao Chen Date: Sat, 24 Jan 2015 14:45:27 -0500 Subject: [PATCH] Docs: fix indentation error in a2edd642 Sphinx doesn't like some whitespace. Also add some Sphinx-ified cross-references in section on ClusterManagers. [ci skip] --- doc/manual/parallel-computing.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/manual/parallel-computing.rst b/doc/manual/parallel-computing.rst index bd36495753414..012a9cca924df 100644 --- a/doc/manual/parallel-computing.rst +++ b/doc/manual/parallel-computing.rst @@ -675,7 +675,7 @@ ClusterManagers --------------- The launching, management and networking of julia processes into a logical -cluster is done via cluster managers. A ``ClusterManager`` is responsible for +cluster is done via cluster managers. A :obj:`ClusterManager` is responsible for - launching worker processes in a cluster environment - managing events during the lifetime of each worker @@ -687,10 +687,10 @@ A julia cluster has the following characteristics: - All processes can directly communicate with each other. Connections between workers (using the in-built TCP/IP transport) is established in the following manner: -- ``addprocs`` is called on the master process with a ``ClusterManager`` object -- ``addprocs`` calls the appropriate ``launch`` method which spawns required - number of worker processes on appropriate machines -- Each worker starts listening on a free port and writes out its host, port information to STDOUT +- :func:`addprocs` is called on the master process with a :obj:`ClusterManager` object +- :func:`addprocs` calls the appropriate :func:`launch` method which spawns +required number of worker processes on appropriate machines +- Each worker starts listening on a free port and writes out its host, port information to :const:`STDOUT` - The cluster manager captures the stdout's of each worker and makes it available to the master process - The master process parses this information and sets up TCP/IP connections to each worker - Every worker is also notified of other workers in the cluster