Skip to content

Commit b8a4a8c

Browse files
committed
New round of man pages from Harumi
Signed-off-by: Jeff Squyres <[email protected]>
1 parent 161ec5d commit b8a4a8c

File tree

613 files changed

+1106
-2116
lines changed

Some content is hidden

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

613 files changed

+1106
-2116
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ With *mpifort*, you can compile any Fortran program that uses the
3030
See mpifort(1) for more details.
3131

3232

33-
.. seealso::
33+
.. seealso::
3434
mpifort(1)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and **mpif77.openmpi**), **mpicxx.openmpi**, **mpiCC.openmpi**,
3333
**ortecc**, and **ortec++**,
3434

3535

36-
.. seealso::
36+
.. seealso::
3737
The following may exist depending on your particular Open MPI
3838
installation: **mpicc**\ (1), **mpiCC**\ (1), **mpic++**\ (1),
3939
**mpifort**\ (1), **mpifort.openmpi**\ (1), **mpicxx.openmpi**\ (1),

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ C Syntax
1818
^^^^^^^^
1919

2020
.. code-block:: c
21-
:linenos:
2221
2322
#include <mpi.h>
2423
#include <mpi-ext.h>
@@ -73,5 +72,5 @@ Examples
7372
}
7473

7574

76-
.. seealso::
75+
.. seealso::
7776
::

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@ C Syntax
1717
^^^^^^^^
1818

1919
.. code-block:: c
20-
:linenos:
2120
2221
#include <mpi.h>
22+
2323
int MPI_Abort(MPI_Comm comm, int errorcode)
2424
2525
2626
Fortran Syntax
2727
^^^^^^^^^^^^^^
2828

2929
.. code-block:: fortran
30-
:linenos:
3130
3231
USE MPI
3332
! or the older form: INCLUDE 'mpif.h'
@@ -39,7 +38,6 @@ Fortran 2008 Syntax
3938
^^^^^^^^^^^^^^^^^^^
4039

4140
.. code-block:: fortran
42-
:linenos:
4341
4442
USE mpi_f08
4543
MPI_Abort(comm, errorcode, ierror)

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ C Syntax
1818
^^^^^^^^
1919

2020
.. code-block:: c
21-
:linenos:
2221
2322
#include <mpi.h>
23+
2424
int MPI_Accumulate(const void *origin_addr, int origin_count,
2525
MPI_Datatype origin_datatype, int target_rank,
2626
MPI_Aint target_disp, int target_count,
@@ -37,7 +37,6 @@ Fortran Syntax (see FORTRAN 77 NOTES)
3737
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3838

3939
.. code-block:: fortran
40-
:linenos:
4140
4241
USE MPI
4342
! or the older form: INCLUDE 'mpif.h'
@@ -60,7 +59,6 @@ Fortran 2008 Syntax
6059
^^^^^^^^^^^^^^^^^^^
6160

6261
.. code-block:: fortran
63-
:linenos:
6462
6563
USE mpi_f08
6664
MPI_Accumulate(origin_addr, origin_count, origin_datatype, target_rank,
@@ -182,5 +180,5 @@ may be used to cause error values to be returned. Note that MPI does not
182180
guarantee that an MPI program can continue past an error.
183181

184182

185-
.. seealso::
183+
.. seealso::
186184
:ref:`MPI_Put` :ref:`MPI_Get_accumulate` :ref:`MPI_Reduce`

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@ C Syntax
1919
^^^^^^^^
2020

2121
.. code-block:: c
22-
:linenos:
2322
2423
#include <mpi.h>
24+
2525
int MPI_Add_error_class(int *errorclass)
2626
2727
2828
Fortran Syntax
2929
^^^^^^^^^^^^^^
3030

3131
.. code-block:: fortran
32-
:linenos:
3332
3433
USE MPI
3534
! or the older form: INCLUDE 'mpif.h'
@@ -41,7 +40,6 @@ Fortran 2008 Syntax
4140
^^^^^^^^^^^^^^^^^^^
4241

4342
.. code-block:: fortran
44-
:linenos:
4543
4644
USE mpi_f08
4745
MPI_Add_error_class(errorclass, ierror)
@@ -93,7 +91,7 @@ may be used to cause error values to be returned. Note that MPI does not
9391
guarantee that an MPI program can continue past an error.
9492

9593

96-
.. seealso::
94+
.. seealso::
9795
::
9896

9997
MPI_Add_error_code

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@ C Syntax
1818
^^^^^^^^
1919

2020
.. code-block:: c
21-
:linenos:
2221
2322
#include <mpi.h>
23+
2424
int MPI_Add_error_code(int errorclass, int *errorcode)
2525
2626
2727
Fortran Syntax
2828
^^^^^^^^^^^^^^
2929

3030
.. code-block:: fortran
31-
:linenos:
3231
3332
USE MPI
3433
! or the older form: INCLUDE 'mpif.h'
@@ -40,7 +39,6 @@ Fortran 2008 Syntax
4039
^^^^^^^^^^^^^^^^^^^
4140

4241
.. code-block:: fortran
43-
:linenos:
4442
4543
USE mpi_f08
4644
MPI_Add_error_code(errorclass, errorcode, ierror)
@@ -88,7 +86,7 @@ may be used to cause error values to be returned. Note that MPI does not
8886
guarantee that an MPI program can continue past an error.
8987

9088

91-
.. seealso::
89+
.. seealso::
9290
::
9391

9492
MPI_Add_error_class

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@ C Syntax
1919
^^^^^^^^
2020

2121
.. code-block:: c
22-
:linenos:
2322
2423
#include <mpi.h>
24+
2525
int MPI_Add_error_string(int errorcode, const char *string)
2626
2727
2828
Fortran Syntax
2929
^^^^^^^^^^^^^^
3030

3131
.. code-block:: fortran
32-
:linenos:
3332
3433
USE MPI
3534
! or the older form: INCLUDE 'mpif.h'
@@ -42,7 +41,6 @@ Fortran 2008 Syntax
4241
^^^^^^^^^^^^^^^^^^^
4342

4443
.. code-block:: fortran
45-
:linenos:
4644
4745
USE mpi_f08
4846
MPI_Add_error_string(errorcode, string, ierror)
@@ -85,7 +83,7 @@ may be used to cause error values to be returned. Note that MPI does not
8583
guarantee that an MPI program can continue past an error.
8684

8785

88-
.. seealso::
86+
.. seealso::
8987
::
9088

9189
MPI_Add_error_class

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,16 @@ C Syntax
1818
^^^^^^^^
1919

2020
.. code-block:: c
21-
:linenos:
2221
2322
#include <mpi.h>
23+
2424
int MPI_Address(void *location, MPI_Aint *address)
2525
2626
2727
Fortran Syntax
2828
^^^^^^^^^^^^^^
2929

3030
.. code-block:: fortran
31-
:linenos:
3231
3332
INCLUDE 'mpif.h'
3433
MPI_ADDRESS(LOCATION, ADDRESS, IERROR)
@@ -101,5 +100,5 @@ may be used to cause error values to be returned. Note that MPI does not
101100
guarantee that an MPI program can continue past an error.
102101

103102

104-
.. seealso::
103+
.. seealso::
105104
| :ref:`MPI_Get_address`

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ C Syntax
1818
^^^^^^^^
1919

2020
.. code-block:: c
21-
:linenos:
2221
2322
#include <mpi.h>
23+
2424
MPI_Aint MPI_Aint_add(MPI_Aint base, MPI_Aint disp)
2525
2626
MPI_Aint MPI_Aint_diff(MPI_Aint addr1, MPI_Aint addr2)
@@ -30,7 +30,6 @@ Fortran Syntax
3030
^^^^^^^^^^^^^^
3131

3232
.. code-block:: fortran
33-
:linenos:
3433
3534
USE MPI
3635
! or the older form: INCLUDE 'mpif.h'
@@ -45,7 +44,6 @@ Fortran 2008 Syntax
4544
^^^^^^^^^^^^^^^^^^^
4645

4746
.. code-block:: fortran
48-
:linenos:
4947
5048
USE mpi_f08
5149
INTEGER(KIND=MPI_ADDRESS_KIND) MPI_AINT_ADD(BASE, DISP)
@@ -91,5 +89,5 @@ originally produced the addresses had called (char \*) *addr1* - (char
9189
\*) *addr2* on the addresses initially passed to :ref:`MPI_Get_address`.
9290

9391

94-
.. seealso::
92+
.. seealso::
9593
:ref:`MPI_Get_address`

0 commit comments

Comments
 (0)