📄 mpi_type_struct.3
字号:
.\"Copyright 2006, Sun Microsystems, Inc..\" Copyright (c) 1996 Thinking Machines Corporation.TH MPI_Type_struct 3OpenMPI "September 2006" "Open MPI 1.2" " ".SH NAME\fBMPI_Type_struct\fP \- Creates a \fIstruct\fP data type -- use of this routine is deprecated..SH SYNTAX.ft R.SH C Syntax.nf#include <mpi.h>int MPI_Type_struct(int \fIcount\fP, int\fI *array_of_blocklengths\fP, MPI_Aint\fI *array_of_displacements\fP, MPI_Datatype\fI *array_of_types\fP, MPI_Datatype\fI *newtype\fP).SH Fortran Syntax.nfINCLUDE 'mpif.h'MPI_TYPE_STRUCT(\fICOUNT, ARRAY_OF_BLOCKLENGTHS, ARRAY_OF_DISPLACEMENTS, ARRAY_OF_TYPES, NEWTYPE, IERROR\fP) INTEGER \fICOUNT, ARRAY_OF_BLOCKLENGTHS(*)\fP INTEGER \fIARRAY_OF_DISPLACEMENTS(*)\fP INTEGER \fIARRAY_OF_TYPES(*), NEWTYPE, IERROR\fP .SH INPUT PARAMETERS.ft R.TP 1icount Number of blocks (integer) also number of entries in arraysarray_of_types, array_of_displacements, and array_of_blocklengths..TP 1iarray_of_blocklengthsNumber of elements in each block (array)..TP 1iarray_of_displacementsByte displacement of each block (array)..TP 1iarray_of_types Type of elements in each block (array of handles to datatype objects)..sp.SH OUTPUT PARAMETERS.ft R.TP 1inewtype New datatype (handle)..ft R.TP 1iIERRORFortran only: Error status (integer). .SH DESCRIPTION.ft RNote that use of this routine is \fIdeprecated\fP as of MPI-2. Use MPI_Type_create_struct instead. .spThis deprecated routine is not available in C++. .spMPI_Type_struct is the most general type constructor. It further generalizes MPI_Type_hindexed in that it allows each block to consist of replications of different datatypes. .sp\fBExample:\fP Let type1 have type map .nf {(double, 0), (char, 8)}.fiwith extent 16. Let B = (2, 1, 3), D = (0, 16, 26), and T = (MPI_FLOAT, type1, MPI_CHAR). Then a call to MPI_Type_struct(3, B, D, T, newtype) returns a datatype with type map.nf {(float, 0), (float,4), (double, 16), (char, 24), (char, 26), (char, 27), (char, 28)}.fiThat is, two copies of MPI_FLOAT starting at 0, followed by one copy of type1 starting at 16, followed by three copies of MPI_CHAR, starting at 26. (We assume that a float occupies 4 bytes.) .spFor more information, see section 3.12.1 of the MPI-1.1 Standard..SH NOTESIf an upperbound is set explicitly by using the MPI datatype MPI_UB, the corresponding index must be positive..spThe MPI-1 Standard originally made vague statements about padding and alignment; this was intended to allow the simple definition of structures that could be sent with a count greater than one. For example, .nf struct {int a; char b;} foo;.fimay have .nf sizeof(foo) = sizeof(int) + sizeof(char); .fidefining the extent of a datatype as including an epsilon, which would have allowed an implementation to make the extent an MPI datatype for this structure equal to 2*sizeof(int). However, since different systems might define different paddings, a clarification to the standard made epsilon zero. Thus, if you define a structure datatype and wish to send or receive multiple items, you should explicitly include an MPI_UB entry as the last member of the structure. For example, the following code can be used for the structure foo:.nf blen[0] = 1; indices[0] = 0; oldtypes[0] = MPI_INT; blen[1] = 1; indices[1] = &foo.b - &foo; oldtypes[1] = MPI_CHAR; blen[2] = 1; indices[2] = sizeof(foo); oldtypes[2] = MPI_UB; MPI_Type_struct( 3, blen, indices, oldtypes, &newtype );.fi.SH ERRORSAlmost 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..spBefore the error value is returned, the current MPI error handler iscalled. 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. .SH SEE ALSO.ft R.spMPI_Type_create_struct.brMPI_Type_create_hindexed.br' @(#)MPI_Type_struct.3 1.22 06/03/09
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -