Blame man/man3/MPI_Win_post.3

Packit Service c5cf8c
.TH MPI_Win_post 3 "11/12/2019" " " "MPI"
Packit Service c5cf8c
.SH NAME
Packit Service c5cf8c
MPI_Win_post \-  Start an RMA exposure epoch 
Packit Service c5cf8c
.SH SYNOPSIS
Packit Service c5cf8c
.nf
Packit Service c5cf8c
int MPI_Win_post(MPI_Group group, int assert, MPI_Win win)
Packit Service c5cf8c
.fi
Packit Service c5cf8c
.SH INPUT PARAMETERS
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B group 
Packit Service c5cf8c
- group of origin processes (handle)
Packit Service c5cf8c
.PD 1
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B assert 
Packit Service c5cf8c
- Used to optimize this call; zero may be used as a default.
Packit Service c5cf8c
See notes. (integer)
Packit Service c5cf8c
.PD 1
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B win 
Packit Service c5cf8c
- window object (handle)
Packit Service c5cf8c
.PD 1
Packit Service c5cf8c
Packit Service c5cf8c
.SH NOTES
Packit Service c5cf8c
The 
Packit Service c5cf8c
.I assert
Packit Service c5cf8c
argument is used to indicate special conditions for the
Packit Service c5cf8c
fence that an implementation may use to optimize the 
Packit Service c5cf8c
.I MPI_Win_post
Packit Service c5cf8c
operation.  The value zero is always correct.  Other assertion values
Packit Service c5cf8c
may be or'ed together.  Assertions that are valid for 
Packit Service c5cf8c
.I MPI_Win_post
Packit Service c5cf8c
are:
Packit Service c5cf8c
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B MPI_MODE_NOCHECK 
Packit Service c5cf8c
- the matching calls to 
Packit Service c5cf8c
.I MPI_WIN_START
Packit Service c5cf8c
have not yet
Packit Service c5cf8c
occurred on any origin processes when the call to 
Packit Service c5cf8c
.I MPI_WIN_POST
Packit Service c5cf8c
is made.
Packit Service c5cf8c
The nocheck option can be specified by a post call if and only if it is
Packit Service c5cf8c
specified by each matching start call.
Packit Service c5cf8c
.PD 1
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B MPI_MODE_NOSTORE 
Packit Service c5cf8c
- the local window was not updated by local stores (or
Packit Service c5cf8c
local get or receive calls) since last synchronization. This may avoid
Packit Service c5cf8c
the need for cache synchronization at the post call.
Packit Service c5cf8c
.PD 1
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B MPI_MODE_NOPUT 
Packit Service c5cf8c
- the local window will not be updated by put or accumulate
Packit Service c5cf8c
calls after the post call, until the ensuing (wait) synchronization. This
Packit Service c5cf8c
may avoid the need for cache synchronization at the wait call.
Packit Service c5cf8c
.PD 1
Packit Service c5cf8c
Packit Service c5cf8c
.SH NOTES FOR FORTRAN
Packit Service c5cf8c
All MPI routines in Fortran (except for 
Packit Service c5cf8c
.I MPI_WTIME
Packit Service c5cf8c
and 
Packit Service c5cf8c
.I MPI_WTICK
Packit Service c5cf8c
) have
Packit Service c5cf8c
an additional argument 
Packit Service c5cf8c
.I ierr
Packit Service c5cf8c
at the end of the argument list.  
Packit Service c5cf8c
.I ierr
Packit Service c5cf8c
is an integer and has the same meaning as the return value of the routine
Packit Service c5cf8c
in C.  In Fortran, MPI routines are subroutines, and are invoked with the
Packit Service c5cf8c
.I call
Packit Service c5cf8c
statement.
Packit Service c5cf8c
Packit Service c5cf8c
All MPI objects (e.g., 
Packit Service c5cf8c
.I MPI_Datatype
Packit Service c5cf8c
, 
Packit Service c5cf8c
.I MPI_Comm
Packit Service c5cf8c
) are of type 
Packit Service c5cf8c
.I INTEGER
Packit Service c5cf8c
in Fortran.
Packit Service c5cf8c
Packit Service c5cf8c
.SH ERRORS
Packit Service c5cf8c
Packit Service c5cf8c
All MPI routines (except 
Packit Service c5cf8c
.I MPI_Wtime
Packit Service c5cf8c
and 
Packit Service c5cf8c
.I MPI_Wtick
Packit Service c5cf8c
) return an error value;
Packit Service c5cf8c
C routines as the value of the function and Fortran routines in the last
Packit Service c5cf8c
argument.  Before the value is returned, the current MPI error handler is
Packit Service c5cf8c
called.  By default, this error handler aborts the MPI job.  The error handler
Packit Service c5cf8c
may be changed with 
Packit Service c5cf8c
.I MPI_Comm_set_errhandler
Packit Service c5cf8c
(for communicators),
Packit Service c5cf8c
.I MPI_File_set_errhandler
Packit Service c5cf8c
(for files), and 
Packit Service c5cf8c
.I MPI_Win_set_errhandler
Packit Service c5cf8c
(for
Packit Service c5cf8c
RMA windows).  The MPI-1 routine 
Packit Service c5cf8c
.I MPI_Errhandler_set
Packit Service c5cf8c
may be used but
Packit Service c5cf8c
its use is deprecated.  The predefined error handler
Packit Service c5cf8c
.I MPI_ERRORS_RETURN
Packit Service c5cf8c
may be used to cause error values to be returned.
Packit Service c5cf8c
Note that MPI does 
Packit Service c5cf8c
.B not
Packit Service c5cf8c
guarentee that an MPI program can continue past
Packit Service c5cf8c
an error; however, MPI implementations will attempt to continue whenever
Packit Service c5cf8c
possible.
Packit Service c5cf8c
Packit Service c5cf8c
.PD 0
Packit Service c5cf8c
.TP
Packit Service c5cf8c
.B MPI_SUCCESS 
Packit Service c5cf8c
- No error; MPI routine completed successfully.
Packit Service c5cf8c
.PD 1