DeinoMPI

The Great and Terrible implementation of MPI-2

function index

MPI_File_iread_shared

Nonblocking read using shared file pointer
int MPI_File_iread_shared(
  MPI_File file,
  void *buf,
  int count,
  MPI_Datatype datatype,
  MPI_Request *request
);

Parameters

mpi_fh
[in] file handle (handle)
buf
[out] initial address of buffer (choice)
count
[in] number of elements in buffer (nonnegative integer)
datatype
[in] datatype of each buffer element (handle)
request
[out] request object (handle)

Remarks

MPI_FILE_IREAD_SHARED is a nonblocking version of the MPI_FILE_READ_SHARED interface.  MPI_FILE_READ_SHARED reads a file using the shared file pointer.

Example Code

The following sample code illustrates MPI_File_iread_shared.

Insert code here.