18.2.280. MPI_Pready_range
MPI_Pready_range - Indicates that a given range os send-side partitions are ready to be transferred.
18.2.280.1. SYNTAX
18.2.280.1.1. C Syntax
#include <mpi.h>
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request *request)
18.2.280.1.2. Fortran Syntax
USE MPI
! or the older form: INCLUDE 'mpif.h'
MPI_PREADY(PARTITION_LOW, PARTITION_HIGH, REQUEST, IERROR)
INTEGER PARTITION_LOW, PARTITION_HIGH, REQUEST, IERROR
18.2.280.1.3. Fortran 2008 Syntax
USE mpi_f08
MPI_Pready(partition_low, partition_high, request, ierror)
INTEGER, INTENT(IN) :: partition_low, partition_high
TYPE(MPI_Request), INTENT(IN) :: request
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
18.2.280.2. INPUT PARAMETERS
partition_low
: The lowest of the range of partitions to mark ready for transfer (integer).partition_high
: The highest of the range of partitions to mark ready for transfer (integer).request
: Communication request (handle).
18.2.280.3. OUTPUT PARAMETERS
IERROR
: Fortran only: Error status (integer).
18.2.280.4. ERRORS
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.
See also