1MPI_File_iread(3) MPI-2 MPI_File_iread(3)
2
3
4
6 MPI_File_iread - Nonblocking read using individual file pointer
7
9 #include "mpi.h"
10 int MPI_File_iread(MPI_File fh, void *buf, int count,
11 MPI_Datatype datatype, MPIO_Request *request)
12
14 fh - file handle (handle)
15 count - number of elements in buffer (nonnegative integer)
16 datatype
17 - datatype of each buffer element (handle)
18
19
21 buf - initial address of buffer (choice)
22 request
23 - request object (handle)
24
25
27 All MPI routines in Fortran (except for 'MPI_WTIME' and 'MPI_WTICK')
28 have an additional argument 'ierr' at the end of the argument list.
29 the routine in C. In Fortran, MPI routines are subroutines and are
30 invoked with the 'call' statement.
31
32 All MPI objects (e.g., 'MPI_Datatype', 'MPI_Comm', 'MPI_File') are of
33 type 'INTEGER' in Fortran.
34
35
36
37 8/31/1998 MPI_File_iread(3)