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