Skip to content

Commit c97c4ee

Browse files
authored
Merge pull request #10762 from jsquyres/pr/docs-updates
More docs updates
2 parents 4b6390e + 6acc2c2 commit c97c4ee

File tree

11 files changed

+484
-519
lines changed

11 files changed

+484
-519
lines changed

docs/faq/general-tuning.rst

Lines changed: 3 additions & 478 deletions
Large diffs are not rendered by default.

docs/faq/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,4 @@ that they are worth categorizing in an official way.
2727
ompio
2828
macos
2929

30-
tuning
3130
general-tuning

docs/faq/large-clusters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ as soon as possible.
154154

155155
This parameter can be included in the default MCA parameter file,
156156
placed in the user's environment, or added to the ``mpirun`` command
157-
line. See :ref:`this FAQ entry <faq-tuning-setting-mca-params-label>`
157+
line. See :ref:`this FAQ entry <label-running-setting-mca-param-values>`
158158
for more details on how to set MCA parameters.
159159

160160
/////////////////////////////////////////////////////////////////////////

docs/faq/ompio.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ perspective.
235235
value). The value of ``io_ompio_bytes_per_agg`` could be
236236
set by system administrators in the system-wide Open MPI
237237
configuration file, or by users individually. See :ref:`this
238-
FAQ item <faq-tuning-setting-mca-params-label>` on setting
238+
FAQ item <label-running-setting-mca-param-values>` on setting
239239
MCA parameters for details.
240240

241241
For more exhaustive tuning of I/O parameters, we recommend the

docs/faq/running-mpi-apps.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,8 @@ Several notable options are:
743743
:ref:`this FAQ entry for more details
744744
<faq-running-mpi-apps-mpirun-host-label>`).
745745
* ``-n``: Indicate the number of processes to start.
746-
* ``--mca``: Set MCA parameters (see the :doc:`Run-Time Tuning FAQ
747-
category </faq/tuning/>` for more details).
746+
* ``--mca``: Set MCA parameters (see :ref:`how to set MCA params
747+
<label-running-setting-mca-param-values>` for more details).
748748
* ``--wdir DIRECTORY``: Set the working directory of the started
749749
applications. If not supplied, the current working directory is
750750
assumed (or ``$HOME``, if the current working directory does not
@@ -1320,7 +1320,7 @@ Yes.
13201320
The MCA parameter ``mpi_yield_when_idle`` controls whether an MPI
13211321
process runs in Aggressive or Degraded performance mode. Setting it
13221322
to 0 forces Aggressive mode; setting it to 1 forces Degraded mode (see
1323-
:ref:`this FAQ entry <faq-tuning-setting-mca-params-label>` to see how
1323+
:ref:`this FAQ entry <label-running-setting-mca-param-values>` to see how
13241324
to set MCA parameters).
13251325
13261326
Note that this value *only* affects the behavior of MPI processes when

docs/faq/sysadmin.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ network at a system level, such that when users invoke ``mpirun`` or
131131
``mpiexec`` to launch their jobs, they will automatically only be using
132132
the network meant for MPI jobs.
133133

134-
:doc:`See the run-time tuning FAQ category </faq/tuning>` for information on how to set global MCA parameters.
134+
:ref:`See how to set MCA params
135+
<label-running-setting-mca-param-values>` for information on how to
136+
set global MCA parameters.
135137

136138
/////////////////////////////////////////////////////////////////////////
137139

@@ -161,8 +163,10 @@ I have power users who will want to override my global MCA parameters; is this p
161163

162164
Absolutely.
163165

164-
:doc:`See the run-time tuning FAQ category </faq/tuning>` for information how to set MCA parameters, both at the
165-
system level and on a per-user (or per-MPI-job) basis.
166+
:ref:`See how to set MCA params
167+
<label-running-setting-mca-param-values>` for information how to set
168+
MCA parameters, both at the system level and on a per-user (or
169+
per-MPI-job) basis.
166170

167171
/////////////////////////////////////////////////////////////////////////
168172

docs/faq/tuning.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/man-openmpi/man1/ompi_info.1.rst

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -163,65 +163,65 @@ more MCA parameters, use the ``--level`` command line option.
163163
EXAMPLES
164164
--------
165165

166+
Show the default output of options and listing of installed
167+
components in a human-readable / prettyprint format:
168+
166169
.. code-block::
167170
168171
ompi_info
169172
170-
Show the default output of options and listing of installed
171-
components in a human-readable / prettyprint format.
173+
Show the default output of options and listing of installed components
174+
in a machine-parsable format:
172175

173176
.. code-block::
174177
175178
ompi_info --parsable
176179
177-
Show the default output of options and listing of installed components
178-
in a machine-parsable format.
180+
Show the level 1 MCA parameters of the "tcp" BTL component in a
181+
human-readable / prettyprint format:
179182

180183
.. code-block::
181184
182185
ompi_info --param btl tcp
183186
184-
Show the level 1 MCA parameters of the "tcp" BTL component in a
185-
human-readable / prettyprint format.
187+
Show the level 1 through level 6 MCA parameters of the "tcp" BTL
188+
component in a human-readable / prettyprint format:
186189

187190
.. code-block::
188191
189192
ompi_info --param btl tcp --level 6
190193
191-
Show the level 1 through level 6 MCA parameters of the "tcp" BTL
192-
component in a human-readable / prettyprint format.
194+
Show the level 1 MCA parameters of the "tcp" BTL component in a
195+
machine-parsable format:
193196

194197
.. code-block::
195198
196199
ompi_info --param btl tcp --parsable
197200
198-
Show the level 1 MCA parameters of the "tcp" BTL component in a
199-
machine-parsable format.
201+
Show the level 1 through level 3 MCA parameters of string type in a
202+
human-readable / prettyprint format:
200203

201204
.. code-block::
202205
203206
ompi_info --type string --pretty-print --level 3
204207
205-
Show the level 3 MCA parameters of string type in a human-readable /
206-
prettyprint format.
208+
Show the "bindir" that Open MPI was configured with:
207209

208210
.. code-block::
209211
210212
ompi_info --path bindir
211213
212-
Show the "bindir" that Open MPI was configured with.
214+
Show the version of Open MPI version numbers in a prettyprint format:
213215

214216
.. code-block::
215217
216218
ompi_info --version
217219
218-
Show the version of Open MPI version numbers in a prettyprint format.
220+
Show *all* information about the Open MPI installation, including all
221+
components that can be found, all the MCA parameters that they support
222+
(i.e., levels 1 through 9), versions of Open MPI and the components,
223+
etc.:
219224

220225
.. code-block::
221226
222227
ompi_info --all
223-
224-
Show *all* information about the Open MPI installation, including all
225-
components that can be found, all the MCA parameters that they support
226-
(i.e., levels 1 through 9), versions of Open MPI and the components,
227-
etc.

docs/running-apps/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ but they can generally be broken down into two categories:
1919

2020
quickstart
2121
pmix-and-prrte
22+
tuning
2223

2324
localhost
2425
ssh

docs/running-apps/pmix-and-prrte.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _label-running-role-of-pmix-and-prte:
2+
13
The role of PMIx and PRRTE
24
==========================
35

0 commit comments

Comments
 (0)