1MPI_File_get_type_extent(3) MPI-2 MPI_File_get_type_extent(3)
2
3
4
6 MPI_File_get_type_extent - Returns the extent of datatype in the file
7
9 #include "mpi.h"
10 int MPI_File_get_type_extent(MPI_File fh, MPI_Datatype datatype,
11 MPI_Aint *extent)
12
14 fh - file handle (handle)
15 datatype
16 - datatype (handle)
17
18
20 extent - extent of the datatype (nonnegative integer)
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 2/5/1998 MPI_File_get_type_extent(3)