MPI_Win_create_dynamic(3) | Open MPI | MPI_Win_create_dynamic(3) |
MPI_Win_create_dynamic - One-sided MPI call that returns a window object for RMA operations.
#include <mpi.h> MPI_Win_create_dynamic(MPI_Info info, MPI_Comm comm, MPI_Win *win)
USE MPI ! or the older form: INCLUDE 'mpif.h' MPI_WIN_CREATE_DYNAMIC(INFO, COMM, WIN, IERROR) INTEGER INFO, COMM, WIN, IERROR
USE mpi_f08 MPI_Win_create_dynamic(info, comm, win, ierror) TYPE(MPI_Info), INTENT(IN) :: info TYPE(MPI_Comm), INTENT(IN) :: comm TYPE(MPI_Win), INTENT(OUT) :: win INTEGER, OPTIONAL, INTENT(OUT) :: ierror
MPI_Win_create_dynamic is a one-sided MPI communication collective call executed by all processes in the group of comm. It returns a window object without memory attached that can be used by these processes to perform RMA operations.
The following info keys are supported:
Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument.
Before the error value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error.
May 26, 2022 | 4.1.4 |