1MPI_File_set_view(3) MPI-2 MPI_File_set_view(3)
2
3
4
6 MPI_File_set_view - Sets the file view
7
9 #include "mpi.h"
10 int MPI_File_set_view(MPI_File fh, MPI_Offset disp, MPI_Datatype etype,
11 MPI_Datatype filetype, char *datarep, MPI_Info info)
12
14 fh - file handle (handle)
15 disp - displacement (nonnegative integer)
16 etype - elementary datatype (handle)
17 filetype
18 - filetype (handle)
19 datarep
20 - data representation (string)
21 info - info object (handle)
22
23
25 All MPI routines in Fortran (except for 'MPI_WTIME' and 'MPI_WTICK')
26 have an additional argument 'ierr' at the end of the argument list.
27 the routine in C. In Fortran, MPI routines are subroutines and are
28 invoked with the 'call' statement.
29
30 All MPI objects (e.g., 'MPI_Datatype', 'MPI_Comm', 'MPI_File') are of
31 type 'INTEGER' in Fortran.
32
33
34
35 3/4/1999 MPI_File_set_view(3)