⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mpi_op_create.3

📁 MPI stands for the Message Passing Interface. Written by the MPI Forum (a large committee comprising
💻 3
字号:
.\"Copyright 2006, Sun Microsystems, Inc..\" Copyright (c) 1996 Thinking Machines Corporation.TH MPI_Op_create 3OpenMPI "September 2006" "Open MPI 1.2" " ".SH NAME\fBMPI_Op_create\fP \- Creates a user-defined combination function handle..SH SYNTAX.ft R.SH C Syntax.nf#include <mpi.h>int MPI_Op_create(MPI_User_function *\fIfunction\fP, int\fI commute\fP,	MPI_Op *\fIop\fP).SH Fortran Syntax.nfINCLUDE 'mpif.h'MPI_OP_CREATE(\fIFUNCTION, COMMUTE, OP, IERROR\fP)	EXTERNAL	\fIFUNCTION\fP	LOGICAL	\fICOMMUTE\fP	INTEGER	\fIOP, IERROR\fP.SH C++ Syntax.nf#include <mpi.h>void Op::Init(User function* \fIfunction\fP, bool \fIcommute\fP).SH INPUT PARAMETERS.ft R.TP 1ifunctionUser-defined function (function)..TP 1icommuteTrue if commutative; false otherwise..SH OUTPUT PARAMETERS.ft R.TP 1iopOperation (handle)..ft R.TP 1iIERRORFortran only: Error status (integer). .SH DESCRIPTION.ft RMPI_Op_create binds a user-defined global operation to an op handle that can subsequently be used in MPI_Reduce, MPI_Allreduce, MPI_Reduce_scatter, and  MPI_Scan. The user-defined operation is assumed to be associative. If commute = true, then the operation should be both commutative and associative. If commute = false, then the order of operands is fixed and is defined to be in ascending, process rank order, beginning with process zero. The order of evaluation can be changed, taking advantage of the associativity of the operation. If commute = true then the order of evaluation can be changed, taking advantage of commutativity and associativity..sp\fIfunction\fP is the user-defined function, which must have the following four arguments: invec, inoutvec, len, and datatype. .spThe ANSI-C prototype for the function is the following:.sp.nf  typedef void MPI_User_function(void *invec, void *inoutvec,                                 int *len,                                  MPI_Datatype *datatype);.fi.spThe Fortran declaration of the user-defined function appears below..sp.nf  FUNCTION USER_FUNCTION( INVEC(*), INOUTVEC(*), LEN, TYPE)   <type> INVEC(LEN), INOUTVEC(LEN)    INTEGER LEN, TYPE .fi.spThe datatype argument is a handle to the data type that was passed into thecall to MPI_Reduce. The user reduce function should be written such thatthe following holds: Let u[0],\ ...,\ u[len-1] be the len elements in the communication buffer described by the arguments invec, len, and datatype when the function is invoked; let v[0],\ ...,\ v[len-1] be len elements in the communication buffer described by the arguments inoutvec, len, and datatype when the function is invoked; let w[0],\ ...,\ w[len-1] be len elements in the communication buffer described by the arguments inoutvec, len, and datatype when the function returns; then w[i] = u[i] o v[i], for i=0\ ,...,\ len-1, where o is the reduce operation that the function computes..spInformally, we can think of invec and inoutvec as arrays of len elementsthat function is combining. The result of the reduction over-writes valuesin inoutvec, hence the name. Each invocation of the function results in thepointwise evaluation of the reduce operator on len elements: i.e, thefunction returns in inoutvec[i] the value invec[i] o inoutvec[i], for i =0\,...,\ count-1, where o is the combining operation computed by the function..spBy internally comparing the value of the datatype argument to known, global handles, it is possible to overload the use of a single user-defined function for several different data types. .spGeneral datatypes may be passed to the user function. However, use of datatypes that are not contiguous is likely to lead to inefficiencies.  .spNo MPI communication function may be called inside the user function.MPI_Abort may be called inside the function in case of an error. .SH NOTESSuppose one defines a library of user-defined reducefunctions that are overloaded: The datatype argument is used to select the right execution path at each invocation, according to the types of the operands. The user-defined reduce function cannot "decode" the datatype argument that it is passed, and cannot identify, by itself, the correspondence between the datatype handles and the datatype they represent. This correspondence was established when the datatypes were created. Before the library is used, a library initialization preamble must be executed. This preamble code will define the datatypes that are used by the library and store handles to these datatypes in global, static variables that are shared by the user code and the library code.  \fBExample:\fP Example of user-defined reduce: .spCompute the product of an array of complex numbers, in C..sp.nf    typedef struct {         double real,imag;     } Complex;      /* the user-defined function      */     void myProd( Complex *in, Complex *inout, int *len,                  MPI_Datatype *dptr )     {         int i;         Complex c;      for (i=0; i< *len; ++i) {             c.real = inout->real*in->real -                        inout->imag*in->imag;             c.imag = inout->real*in->imag +                        inout->imag*in->real;             *inout = c;             in++; inout++;         }     }      /* and, to call it\&...      */     \&...    /* each process has an array of 100 Complexes          */         Complex a[100], answer[100];         MPI_Op myOp;         MPI_Datatype ctype;         /* explain to MPI how type Complex is defined          */        MPI_Type_contiguous( 2, MPI_DOUBLE, &ctype );         MPI_Type_commit( &ctype );         /* create the complex-product user-op          */         MPI_Op_create( myProd, True, &myOp );              MPI_Reduce( a, answer, 100, ctype, myOp, root, comm );              /* At this point, the answer, which consists of 100 Complexes,          * resides on process root          */ .fi.spThe Fortran version of MPI_Reduce will invoke a user-defined reduce function using the Fortran calling conventions and will pass a Fortran-type datatype argument; the C version will use C calling convention and the C representation of a datatype handle. Users who plan to mix languages should define their reduction functions accordingly..SH NOTES ON COLLECTIVE OPERATIONSThe reduction functions (.I MPI_Op) do not return an error value.  As a result,if the functions detect an error, all they can do is either call .I MPI_Abortor silently skip the problem.  Thus, if you change the error handler from.I MPI_ERRORS_ARE_FATALto something else, for example, .I MPI_ERRORS_RETURN,then no error may be indicated.The reason for this is the performance problems in ensuring thatall collective routines return the same error value..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.sp.nfMPI_ReduceMPI_Reduce_scatterMPI_AllreduceMPI_ScanMPI_Op_free' @(#)MPI_Op_create.3 1.20 06/03/09   

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -