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