@@ -118,17 +118,17 @@ from the command line.
118
118
Connecting independent MPI applications
119
119
---------------------------------------
120
120
121
- Open MPI supports in certain environments connecting multiple,
121
+ In certain environments, Open MPI supports connecting multiple,
122
122
independent MPI applications using mechanism defined in the MPI
123
123
specification such as ``MPI_Comm_connect() / MPI_Comm_accept() `` and
124
124
publishing connection information using ``MPI_Publish_name() /
125
- MPI_Lookup_name() ``. These mechanisms require a centralized instance
125
+ MPI_Lookup_name() ``. These mechanisms require a centralized service
126
126
to exchange contact information across multiple jobs.
127
127
128
- Beginning from Open MPI v5.0.0 this can be achieved by starting an
129
- instance of the prte server and use the ``report-uri `` option to
128
+ Beginning with Open MPI v5.0.0 this can be achieved by starting an
129
+ instance of the prte server with the ``report-uri `` option to
130
130
display the contact information of the prte server. This information
131
- can subsequently be used for launching the MPI applications.
131
+ can then be used for launching subsequent MPI applications.
132
132
133
133
The following commands show an example for launching two MPI jobs
134
134
that will connect to each other at runtime using the MPI-2 based
@@ -147,14 +147,14 @@ prte server
147
147
148
148
.. code-block ::
149
149
150
- user@myhost:~app1-dir$ mpiexec --dvm file:filename -np 4 ./mpi_app_1
150
+ user@myhost:~app1-dir$ mpiexec --dvm file:< filename> -np 4 ./mpi_app_1
151
151
152
152
Step 3: Launch the second MPI application providing the uri of the
153
- prte server
153
+ prte server again
154
154
155
155
.. code-block ::
156
156
157
- user@myhost:~app2-dir$ mpiexec --dvm file:filename -np 4 ./mpi_app_2
157
+ user@myhost:~app2-dir$ mpiexec --dvm file:< filename> -np 4 ./mpi_app_2
158
158
159
159
160
160
In case the prte server has been started as a system server using the
0 commit comments