DeinoMPI

The Great and Terrible implementation of MPI-2

function index

MPI_File_iwrite_shared

Nonblocking write using shared file pointer
int MPI_File_iwrite_shared(
  MPI_File mpi_fh,
  void *buf,
  int count,
  MPI_Datatype datatype,
  MPI_Request *request
);

Parameters

mpi_fh
[in] file handle (handle)
buf
[in] 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_IWRITE_SHARED is a nonblocking version of the MPI_FILE_WRITE_SHARED interface.  MPI_FILE_WRITE_SHARED writes a file using the shared file pointer.

Example Code

The following sample code illustrates MPI_File_iwrite_shared.

Insert code here.