From 90c73b2d0ae4911b511e7b944b0b11b1c4e7da9e Mon Sep 17 00:00:00 2001 From: auxetic <16112973+auxetic@users.noreply.github.com> Date: Sun, 19 Aug 2018 21:59:44 +0800 Subject: [PATCH] fix typo and format (#28755) --- doc/src/manual/parallel-computing.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/src/manual/parallel-computing.md b/doc/src/manual/parallel-computing.md index 5f18d97e75aa4..a07312182904b 100644 --- a/doc/src/manual/parallel-computing.md +++ b/doc/src/manual/parallel-computing.md @@ -158,7 +158,7 @@ julia> data = [i for i in c] Consider a simple example using channels for inter-task communication. We start 4 tasks to process data from a single `jobs` channel. Jobs, identified by an id (`job_id`), are written to the channel. -Each task in this simulation reads a `job_id`, waits for a random amout of time and writes back +Each task in this simulation reads a `job_id`, waits for a random amount of time and writes back a tuple of `job_id` and the simulated time to the results channel. Finally all the `results` are printed out. @@ -1792,10 +1792,10 @@ mpirun -np 4 ./julia example.jl ``` [^1]: - in this context, mpi refers to the mpi-1 standard. beginning with mpi-2, the mpi standards committee - introduced a new set of communication mechanisms, collectively referred to as remote memory access - (rma). the motivation for adding rma to the mpi standard was to facilitate one-sided communication - patterns. for additional information on the latest mpi standard, see [http://mpi-forum.org/docs](http://mpi-forum.org/docs/). + In this context, MPI refers to the MPI-1 standard. Beginning with MPI-2, the MPI standards committee + introduced a new set of communication mechanisms, collectively referred to as Remote Memory Access + (RMA). The motivation for adding rma to the MPI standard was to facilitate one-sided communication + patterns. For additional information on the latest MPI standard, see [http://mpi-forum.org/docs](http://mpi-forum.org/docs/). [^2]: [Julia GPU man pages](http://juliagpu.github.io/CUDAnative.jl/stable/man/usage.html#Julia-support-1)