Skip to content

Commit 0119b5a

Browse files
authored
Merge pull request #11077 from drwootton/man_headings
Change top level heading in man pages to upper case for consistency in Open MPI man pages.
2 parents bdcc59f + ec5ac78 commit 0119b5a

File tree

72 files changed

+381
-381
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+381
-381
lines changed

docs/man-openmpi/man3/MPIX_Query_cuda_support.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ application with older versions of Open MPI or other MPI
6565
implementations that do not have this function.
6666

6767

68-
Examples
68+
EXAMPLES
6969
^^^^^^^^
7070

7171
.. code-block:: c

docs/man-openmpi/man3/MPIX_Query_rocm_support.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ application with older versions of Open MPI or other MPI
6565
implementations that do not have this function.
6666

6767

68-
Examples
68+
EXAMPLES
6969
^^^^^^^^
7070

7171
.. code-block:: c

docs/man-openmpi/man3/MPI_Barrier.3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MPI_Barrier
88
:ref:`MPI_Barrier`, :ref:`MPI_Ibarrier` - Synchronization between MPI processes in a
99
group
1010

11-
Syntax
11+
SYNTAX
1212
------
1313

1414
C Syntax
@@ -55,19 +55,19 @@ Fortran 2008 Syntax
5555
TYPE(MPI_Request), INTENT (OUT) :: request
5656
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
5757
58-
Input Parameter
58+
INPUT PARAMETER
5959
---------------
6060

6161
- comm : Communicator (handle).
6262
- info : Info (handle, persistent only).
6363

64-
Output Parameters
64+
OUTPUT PARAMETERS
6565
-----------------
6666

6767
- request : Request (handle, non-blocking only).
6868
- IERROR : Fortran only: Error status (integer).
6969

70-
Description
70+
DESCRIPTION
7171
-----------
7272

7373
An MPI barrier completes after all groups members have entered the
@@ -81,7 +81,7 @@ performed across all processes in both groups. All processes in the
8181
first group may exit the barrier when all processes in the second group
8282
have entered the barrier.
8383

84-
Errors
84+
ERRORS
8585
------
8686

8787
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Bsend.3.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MPI_Bsend
77
88
:ref:`MPI_Bsend` - Basic send with user-specified buffering.
99

10-
Syntax
10+
SYNTAX
1111
------
1212

1313
C Syntax
@@ -45,7 +45,7 @@ Fortran 2008 Syntax
4545
TYPE(MPI_Comm), INTENT(IN) :: comm
4646
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
4747
48-
Input Parameters
48+
INPUT PARAMETERS
4949
----------------
5050

5151
- ``buf`` : Initial address of send buffer (choice).
@@ -55,17 +55,17 @@ Input Parameters
5555
- ``tag`` : Message tag (integer).
5656
- ``comm`` : Communicator (handle).
5757

58-
Output Parameters
58+
OUTPUT PARAMETERS
5959
-----------------
6060

6161
- ``IERROR`` : Fortran only: Error status (integer).
6262

63-
Description
63+
DESCRIPTION
6464
-----------
6565

6666
:ref:`MPI_Bsend` performs a buffered-mode, blocking send.
6767

68-
Notes
68+
NOTES
6969
-----
7070

7171
This send is provided as a convenience function; it allows the user to
@@ -94,7 +94,7 @@ In C, you can force the messages to be delivered by
9494
``MPI_Buffer_detach`` will not complete until all buffered messages are
9595
delivered.)
9696

97-
Errors
97+
ERRORS
9898
------
9999

100100
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Bsend_init.3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MPI_Bsend_init
77
88
:ref:`MPI_Bsend_init` - Builds a handle for a buffered send.
99

10-
Syntax
10+
SYNTAX
1111
------
1212

1313
C Syntax
@@ -48,7 +48,7 @@ Fortran 2008 Syntax
4848
TYPE(MPI_Request), INTENT(OUT) :: request
4949
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
5050
51-
Input Parameters
51+
INPUT PARAMETERS
5252
----------------
5353

5454
- buf : Initial address of send buffer (choice).
@@ -58,13 +58,13 @@ Input Parameters
5858
- tag : Message tag (integer).
5959
- comm : Communicator (handle).
6060

61-
Output Parameters
61+
OUTPUT PARAMETERS
6262
-----------------
6363

6464
- request : Communication request (handle).
6565
- IERROR : Fortran only: Error status (integer).
6666

67-
Description
67+
DESCRIPTION
6868
-----------
6969

7070
Creates a persistent communication request for a buffered mode send, and
@@ -73,7 +73,7 @@ binds to it all the arguments of a send operation.
7373
A communication (send or receive) that uses a persistent request is
7474
initiated by the function :ref:`MPI_Start`.
7575

76-
Errors
76+
ERRORS
7777
------
7878

7979
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Buffer_attach.3.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MPI_Buffer_attach
77
88
:ref:`MPI_Buffer_attach` - Attaches a user-defined buffer for sending.
99

10-
Syntax
10+
SYNTAX
1111
------
1212

1313
C Syntax
@@ -43,25 +43,25 @@ Fortran 2008 Syntax
4343
INTEGER, INTENT(IN) :: size
4444
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
4545
46-
Input Parameters
46+
INPUT PARAMETERS
4747
----------------
4848

4949
- buf : Initial buffer address (choice).
5050
- size : Buffer size, in bytes (integer).
5151

52-
Output Parameter
52+
OUTPUT PARAMETER
5353
----------------
5454

5555
- IERROR : Fortran only: Error status (integer).
5656

57-
Description
57+
DESCRIPTION
5858
-----------
5959

6060
Provides to MPI a buffer in the user's memory to be used for buffering
6161
outgoing messages. The buffer is used only by messages sent in buffered
6262
mode. Only one buffer can be attached to a process at a time.
6363

64-
Notes
64+
NOTES
6565
-----
6666

6767
The size given should be the sum of the sizes of all outstanding Bsends
@@ -83,7 +83,7 @@ MPI_BSEND_OVERHEAD gives the maximum amount of buffer space that may be
8383
used by the Bsend routines. This value is in mpi.h for C and mpif.h for
8484
Fortran.
8585

86-
Errors
86+
ERRORS
8787
------
8888

8989
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Buffer_detach.3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MPI_Buffer_detach
88
:ref:`MPI_Buffer_detach` - Removes an existing buffer (for use in in :ref:`MPI_Bsend`,
99
etc.)
1010

11-
Syntax
11+
SYNTAX
1212
------
1313

1414
C Syntax
@@ -45,14 +45,14 @@ Fortran 2008 Syntax
4545
INTEGER, INTENT(OUT) :: size
4646
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
4747
48-
Output Parameters
48+
OUTPUT PARAMETERS
4949
-----------------
5050

5151
- buf : Initial buffer address (choice).
5252
- size : Buffer size, in bytes (integer).
5353
- IERROR : Fortran only: Error status (integer).
5454

55-
Description
55+
DESCRIPTION
5656
-----------
5757

5858
Detach the buffer currently associated with MPI. The call returns the
@@ -69,7 +69,7 @@ MPI_Buffer_detach( &buff, &size); /* Buffer size reduced to zero */
6969
MPI_Buffer_attach( buff, size); /* Buffer of 10000 bytes available again
7070
\*/
7171

72-
Notes
72+
NOTES
7373
-----
7474

7575
The reason that :ref:`MPI_Buffer_detach` returns the address and size of the
@@ -97,7 +97,7 @@ differently: A pointer to the buffer is passed to :ref:`MPI_Buffer_attach`; the
9797
address of the pointer is passed to :ref:`MPI_Buffer_detach`, so that this call
9898
can return the pointer value.
9999

100-
Errors
100+
ERRORS
101101
------
102102

103103
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Cancel.3.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MPI_Cancel
77
88
:ref:`MPI_Cancel` - Cancels a communication request.
99

10-
Syntax
10+
SYNTAX
1111
------
1212

1313
C Syntax
@@ -41,17 +41,17 @@ Fortran 2008 Syntax
4141
TYPE(MPI_Request), INTENT(IN) :: request
4242
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
4343
44-
Input Parameter
44+
INPUT PARAMETER
4545
---------------
4646

4747
- request : Communication request (handle).
4848

49-
Output Parameter
49+
OUTPUT PARAMETER
5050
----------------
5151

5252
- IERROR : Fortran only: Error status (integer).
5353

54-
Description
54+
DESCRIPTION
5555
-----------
5656

5757
The :ref:`MPI_Cancel` operation allows pending communications to be canceled.
@@ -99,15 +99,15 @@ If the operation has been canceled, then information to that effect will
9999
be returned in the status argument of the operation that completes the
100100
communication.
101101

102-
Notes
102+
NOTES
103103
-----
104104

105105
The primary expected use of :ref:`MPI_Cancel` is in multi-buffering schemes,
106106
where speculative MPI_Irecvs are made. When the computation completes,
107107
some of these requests may remain; using :ref:`MPI_Cancel` allows the user to
108108
cancel these unsatisfied requests.
109109

110-
Errors
110+
ERRORS
111111
------
112112

113113
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Cart_coords.3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MPI_Cart_coords
88
:ref:`MPI_Cart_coords` - Determines process coords in Cartesian topology
99
given rank in group.
1010

11-
Syntax
11+
SYNTAX
1212
------
1313

1414
C Syntax
@@ -45,29 +45,29 @@ Fortran 2008 Syntax
4545
INTEGER, INTENT(OUT) :: coords(maxdims)
4646
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
4747
48-
Input Parameters
48+
INPUT PARAMETERS
4949
----------------
5050

5151
- ``comm`` : Communicator with Cartesian structure (handle).
5252
- ``rank`` : Rank of a process within group of comm (integer).
5353
- ``maxdims`` : Length of vector coords in the calling program
5454
(integer). Length of vector coords in the calling program (integer).
5555

56-
Output Parameters
56+
OUTPUT PARAMETERS
5757
-----------------
5858

5959
- ``coords`` : Integer array (of size ndims,which was defined by
6060
:ref:`MPI_Cart_create` call) containing the Cartesian coordinates of
6161
specified process (integer).
6262
- ``IERROR`` : Fortran only: Error status (integer).
6363

64-
Description
64+
DESCRIPTION
6565
-----------
6666

6767
:ref:`MPI_Cart_coords` provides a mapping of ``rank``\ s to Cartesian
6868
coordinates.
6969

70-
Errors
70+
ERRORS
7171
------
7272

7373
.. include:: ./ERRORS.rst

docs/man-openmpi/man3/MPI_Cart_create.3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MPI_Cart_create
88
:ref:`MPI_Cart_create` - Makes a new communicator to which Cartesian
99
topology information has been attached.
1010

11-
Syntax
11+
SYNTAX
1212
------
1313

1414
C Syntax
@@ -49,7 +49,7 @@ Fortran 2008 Syntax
4949
TYPE(MPI_Comm), INTENT(OUT) :: comm_cart
5050
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
5151
52-
Input Parameters
52+
INPUT PARAMETERS
5353
----------------
5454

5555
- ``comm_old`` : Input communicator (handle).
@@ -61,13 +61,13 @@ Input Parameters
6161
- ``reorder`` : Ranking may be reordered (true) or not (false)
6262
(logical).
6363

64-
Output Parameters
64+
OUTPUT PARAMETERS
6565
-----------------
6666

6767
- ``comm_cart`` : Communicator with new Cartesian topology (handle).
6868
- ``IERROR`` : Fortran only: Error status (integer).
6969

70-
Description
70+
DESCRIPTION
7171
-----------
7272

7373
:ref:`MPI_Cart_create` returns a handle to a new communicator to which the
@@ -80,7 +80,7 @@ smaller than the size of the group of comm, then some processes are
8080
returned MPI_COMM_NULL, in analogy to :ref:`MPI_Comm_split`. The call
8181
is erroneous if it specifies a grid that is larger than the group size.
8282

83-
Errors
83+
ERRORS
8484
------
8585

8686
.. include:: ./ERRORS.rst

0 commit comments

Comments
 (0)