update mpich linux

This commit is contained in:
Bassem Girgis
2019-08-10 18:46:24 -05:00
parent fd76cc3a51
commit 9b1ac8cf33
867 changed files with 11634 additions and 13950 deletions

View File

@@ -1,9 +1,9 @@
.TH MPI_Query_thread 3 "11/10/2017" " " "MPI"
.TH MPI_Query_thread 3 "6/5/2019" " " "MPI"
.SH NAME
MPI_Query_thread \- Return the level of thread support provided by the MPI library
MPI_Query_thread \- Return the level of thread support provided by the MPI library
.SH SYNOPSIS
.nf
int MPI_Query_thread( int *provided )
int MPI_Query_thread(int *provided)
.fi
.SH OUTPUT PARAMETERS
.PD 0
@@ -23,26 +23,26 @@ The valid values for the level of thread support are:
.PD 0
.TP
.B MPI_THREAD_SINGLE
- Only one thread will execute.
- Only one thread will execute.
.PD 1
.PD 0
.TP
.B MPI_THREAD_FUNNELED
- The process may be multi-threaded, but only the main
thread will make MPI calls (all MPI calls are funneled to the
main thread).
- The process may be multi-threaded, but only the main
thread will make MPI calls (all MPI calls are funneled to the
main thread).
.PD 1
.PD 0
.TP
.B MPI_THREAD_SERIALIZED
- The process may be multi-threaded, and multiple
threads may make MPI calls, but only one at a time: MPI calls are not
made concurrently from two distinct threads (all MPI calls are serialized).
- The process may be multi-threaded, and multiple
threads may make MPI calls, but only one at a time: MPI calls are not
made concurrently from two distinct threads (all MPI calls are serialized).
.PD 1
.PD 0
.TP
.B MPI_THREAD_MULTIPLE
- Multiple threads may call MPI, with no restrictions.
- Multiple threads may call MPI, with no restrictions.
.PD 1
If