1MPI_Type_extent(3) LAM/MPI MPI_Type_extent(3)
2
3
4
6 MPI_Type_extent - Returns the extent of a datatype
7
9 #include <mpi.h>
10 int MPI_Type_extent(MPI_Datatype dtype, MPI_Aint *pextent)
11
13 dtype - datatype (handle)
14
15
17 pextent
18 - datatype extent (integer)
19
20
21
23 This function is deprecated. It has been replaced with an MPI-2 func‐
24 tion (see the "See also" section, below), which provides the same func‐
25 tionality. This function is (or effectively is) a wrapper to the
26 replacement function, anyway. User programs should use the MPI-2
27 replacement function instead of this function.
28
29 Some functions are deprecated because their names did not conform to
30 the stricter naming conventions of MPI-2; others are deprecated because
31 they have been replaced with more flexible functionality.
32
33
35 MPI_Type_get_extent
36
37
39 For more information, please see the official MPI Forum web site, which
40 contains the text of both the MPI-1 and MPI-2 standards. These docu‐
41 ments contain detailed information about each MPI function (most of
42 which is not duplicated in these man pages).
43
44 http://www.mpi-forum.org/
45
46
47
49 The LAM Team would like the thank the MPICH Team for the handy program
50 to generate man pages ("doctext" from ftp://ftp.mcs.anl.gov/pub/sow‐
51 ing/sowing.tar.gz ), the initial formatting, and some initial text for
52 most of the MPI-1 man pages.
53
55 textent.c
56
57
58
59LAM/MPI 7.1.2 2/23/2006 MPI_Type_extent(3)