1
1

man: Update description of MPI_IN_PLACE of MPI_Exscan.

MPI-2.2 added MPI_IN_PLACE support for MPI_Exscan.
Этот коммит содержится в:
KAWASHIMA Takahiro 2015-10-16 16:12:43 +09:00
родитель 5a3b8b34cd
Коммит 953c95e9bb

Просмотреть файл

@ -114,7 +114,13 @@ as \fIrecvbuf\fP is not significant for process 0. The value of
\fIrecvbuf\fP on process 1 is always the value in \fIsendbuf\fP on
process 0.
.sp
No MPI_IN_PLACE operation is supported.
.SH USE OF IN-PLACE OPTION
The `in place' option for intracommunicators is specified by passing MPI_IN_PLACE in the \fIsendbuf\fP argument. In this case, the input data is taken from the receive buffer, and replaced by the output data.
.sp
Note that MPI_IN_PLACE is a special kind of value; it has the same restrictions on its use as MPI_BOTTOM.
.sp
Because the in-place option converts the receive buffer into a send-and-receive buffer, a Fortran binding that includes INTENT must mark these as INOUT, not OUT.
.sp
.SH NOTES
.ft R