Skip to content

Latest commit

 

History

History
69 lines (44 loc) · 1.29 KB

MPI_Pready_list.3.rst

File metadata and controls

69 lines (44 loc) · 1.29 KB

MPI_Pready_list

MPI_Pready_list Indicates that a list given send-side partitions are ready to be transferred.

SYNTAX

C Syntax

#include <mpi.h>

int MPI_Pready_list(int length, int *partitions, MPI_Request *request)

Fortran Syntax

USE MPI
! or the older form: INCLUDE 'mpif.h'
MPI_PREADY_LIST(LENGTH, PARTITIONS, REQUEST, IERROR)
 INTEGER LENGTH, PARTITIONS(*), REQUEST, IERROR

Fortran 2008 Syntax

USE mpi_f08
MPI_Pready_list(length, partitions, request, ierror)
        INTEGER, INTENT(IN) :: length
 INTEGER, INTENT(IN) :: partitions
 TYPE(MPI_Request), INTENT(IN) :: request
 INTEGER, OPTIONAL, INTENT(OUT) :: ierror

INPUT PARAMETERS

  • length: The length of the given partition array (integer).
  • partitions: An array of numbers of partitions to mark ready for transfer (integer).
  • request: Communication request (handle).

OUTPUT PARAMETERS

  • ierror: Fortran only: Error status (integer).

ERRORS

* MPI_Pready * MPI_Pready_range * MPI_Parrived