From 0388647d0b814273d3bca89843f95be5148e7d7c Mon Sep 17 00:00:00 2001 From: Jiahao Chen Date: Sat, 4 Oct 2014 20:55:55 -0400 Subject: [PATCH] Doc: fix whitespace so that lists are formatted correctly in parallel computing section --- doc/manual/parallel-computing.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/manual/parallel-computing.rst b/doc/manual/parallel-computing.rst index b0c2414f8557b..b86e65a9568dd 100644 --- a/doc/manual/parallel-computing.rst +++ b/doc/manual/parallel-computing.rst @@ -670,7 +670,7 @@ enabling Julia's natural parallelism to function quite transparently in a cluster environment. The ``ClusterManager`` interface provides a way to specify a means to launch and manage worker processes. -Thus, a custom cluster manager would need to : +Thus, a custom cluster manager would need to: - be a subtype of the abstract ``ClusterManager`` - implement ``launch``, a method responsible for launching new workers @@ -692,6 +692,7 @@ starting workers on the same host, is implemented:: end The ``launch`` method takes the following arguments: + - ``manager::LocalManager`` - used to dispatch the call to the appropriate implementation - ``np::Integer`` - number of workers to be launched - ``config::Dict`` - all the keyword arguments provided as part of the ``addprocs`` call @@ -726,6 +727,7 @@ where: the worker. The ``manage`` method takes the following arguments: + - ``manager::ClusterManager`` - used to dispatch the call to the appropriate implementation - ``id::Integer`` - The Julia process id - ``config::Dict`` - configuration dictionary for the worker. The data may have been modified by the ``launch`` method