source: proiecte/hpl/openmpi_compiled/share/man/man3/MPI_Type_get_true_extent.3 @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 2.9 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Type_get_true_extent 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Type_get_true_extent\fP \- Returns the true lower bound and extent of a data type's corresponding typemap, ignoring MPI_UB and MPI_LB markers.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Type_get_true_extent(MPI_Datatype \fIdatatype\fP,
13        MPI_Aint *\fItrue_lb\fP, MPI_Aint *\fItrue_extent\fP)
14
15.SH Fortran Syntax (see FORTRAN 77 NOTES)
16.nf
17INCLUDE 'mpif.h'
18MPI_TYPE_GET_TRUE_EXTENT(\fIDATATYPE, TRUE_LB, TRUE_EXTENT, IERROR\fP)
19        INTEGER \fIDATATYPE, IERROR\fP
20        INTEGER(KIND=MPI_ADDRESS_KIND) \fITRUE_LB, TRUE_EXTENT\fP
21
22.SH C++ Syntax
23.nf
24#include <mpi.h>
25void MPI::Datatype::Get_true_extent(MPI::Aint& \fItrue_lb\fP,
26        MPI::Aint& \fItrue_extent\fP) const
27
28.SH INPUT PARAMETER
29.ft R
30.TP 1i
31datatype     
32Data type for which information is wanted (handle).
33.sp
34.SH OUTPUT PARAMETERS
35.ft R
36.TP 1i
37true_lb
38True lower bound of data type (integer).
39.TP 1i
40true_extent
41True size of data type (integer).
42.ft R
43.TP 1i
44IERROR
45Fortran only: Error status (integer).
46
47.SH DESCRIPTION
48.ft R
49The \fItrue_lb\fP parameter returns the offset of the lowest unit of store that is addressed by the data type, that is, the lower bound of the corresponding typemap, ignoring MPI_LB markers. The \fItrue_extent\fP parameter returns the true size of the data type, that is, the extent of the corresponding typemap, ignoring MPI_LB and MPI_UB markers, and performing no rounding for alignment.
50.sp
51The \fItrue_extent\fP is the minimum number of bytes of memory necessary to hold a data type, uncompressed.
52.sp
53See Section 4.14.3 of the MPI-2 standard for more detailed definitions of these parameters in relation to the typemap.
54
55.SH FORTRAN 77 NOTES
56.ft R
57The MPI standard prescribes portable Fortran syntax for
58the \fITRUE_LB\fP and \fITRUE_EXTENT\fP arguments only for Fortran 90. FORTRAN 77
59users may use the non-portable syntax
60.sp
61.nf
62     INTEGER*MPI_ADDRESS_KIND \fITRUE_LB\fP
63or
64     INTEGER*MPI_ADDRESS_KIND \fITRUE_EXTENT\fP
65.fi
66.sp
67where MPI_ADDRESS_KIND is a constant defined in mpif.h
68and gives the length of the declared integer in bytes.
69
70.SH ERRORS
71Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object.
72.sp
73Before the error value is returned, the current MPI error handler is
74called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. 
75
76
Note: See TracBrowser for help on using the repository browser.