Skip to content

Commit 7a2af9e

Browse files
authored
Merge pull request #7747 from cniethammer/README-fixes
Fix minor inconsistencies and typos in README
2 parents d791f73 + a59a138 commit 7a2af9e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ Compiler Notes
412412
example, MPI handles have distinct types (vs. all being integers).
413413
See the MPI-3 document for more details.
414414

415-
*** The mpi_f08 module is STRONGLY is recommended for all new MPI
415+
*** The mpi_f08 module is STRONGLY recommended for all new MPI
416416
Fortran subroutines and applications. Note that the mpi_f08
417417
module can be used in conjunction with the other two Fortran
418418
MPI bindings in the same application (only one binding can be
@@ -758,7 +758,7 @@ Network Support
758758
- The OpenFabrics Enterprise Distribution (OFED) software package v1.0
759759
will not work properly with Open MPI v1.2 (and later) due to how its
760760
Mellanox InfiniBand plugin driver is created. The problem is fixed
761-
OFED v1.1 (and later).
761+
with OFED v1.1 (and later).
762762

763763
- Better memory management support is available for OFED-based
764764
transports using the "ummunotify" Linux kernel module. OFED memory
@@ -1298,7 +1298,7 @@ MPI FUNCTIONALITY
12981298
the value of the MCA parameter mpi_param_check (default:
12991299
yes).
13001300
yes: Synonym for "always" (same as --with-mpi-param-check).
1301-
no: Synonym for "none" (same as --without-mpi-param-check).
1301+
no: Synonym for "never" (same as --without-mpi-param-check).
13021302

13031303
If --with-mpi-param is not specified, "runtime" is the default.
13041304

@@ -1409,7 +1409,7 @@ MISCELLANEOUS FUNCTIONALITY
14091409
--with-wrapper-fcflags=<fcflags>
14101410
--with-wrapper-ldflags=<ldflags>
14111411
--with-wrapper-libs=<libs>
1412-
Add the specified flags to the default flags that used are in Open
1412+
Add the specified flags to the default flags that are used in Open
14131413
MPI's "wrapper" compilers (e.g., mpicc -- see below for more
14141414
information about Open MPI's wrapper compilers). By default, Open
14151415
MPI's wrapper compilers use the same compilers used to build Open
@@ -1903,7 +1903,7 @@ are equivalent.
19031903

19041904
The rsh launcher (which defaults to using ssh) accepts a --hostfile
19051905
parameter (the option "--machinefile" is equivalent); you can specify a
1906-
--hostfile parameter indicating an standard mpirun-style hostfile (one
1906+
--hostfile parameter indicating a standard mpirun-style hostfile (one
19071907
hostname per line):
19081908

19091909
shell$ mpirun --hostfile my_hostfile -np 2 hello_world_mpi
@@ -1919,7 +1919,7 @@ node3.example.com slots=2
19191919
node4.example.com slots=4
19201920
---------------------------------------------------------------------------
19211921

1922-
shell$ mpirun -hostfile my_hostfile -np 8 hello_world_mpi
1922+
shell$ mpirun --hostfile my_hostfile -np 8 hello_world_mpi
19231923

19241924
will launch MPI_COMM_WORLD rank 0 on node1, rank 1 on node2, ranks 2
19251925
and 3 on node3, and ranks 4 through 7 on node4.

0 commit comments

Comments
 (0)