NAME
MMPPIIOOppccrreeaattee - Creates a user-defined combination function handle.
SSYYNNTTAAXX CC SSyynnttaaxx#include
int MPIOpcreate(MPIUserfunction *function, int commute, MPIOp *op) FFoorrttrraann SSyynnttaaxx INCLUDE 'mpif.h'MPIOPCREATE(FUNCTION, COMMUTE, OP, IERROR)
EXTERNAL FUNCTION LOGICAL COMMUTEINTEGER OP, IERROR
CC++++ SSyynnttaaxx#include
void Op::Init(User function* function, bool commute) IINNPPUUTT PPAARRAAMMEETTEERRSSfunction User-defined function (function).
commute True if commutative; false otherwise. OOUUTTPPUUTT PPAARRAAMMEETTEERRSS op Operation (handle).IERROR Fortran only: Error status (integer).
DESCRIPTION
MPIOpcreate binds a user-defined global operation to an op handle
that can subsequently be used in MPIReduce, MPIAllreduce,MPIReducescatter, and MPIScan. 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.function is the user-defined function, which must have the following
four arguments: invec, inoutvec, len, and datatype.The ANSI-C prototype for the function is the following:
typedef void MPIUserfunction(void *invec, void *inoutvec, int *len, MPIDatatype *datatype);The Fortran declaration of the user-defined function appears below.
FUNCTION USERFUNCTION( INVEC(*), INOUTVEC(*), LEN, TYPE)INVEC(LEN), INOUTVEC(LEN) INTEGER LEN, TYPE The datatype argument is a handle to the data type that was passed into the call to MPIReduce. The user reduce function should be written such that the following holds: Let u[0], ..., u[len-1] be the len elements
in the communication buffer described by the arguments invec, len, anddatatype 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; letw[0], ..., w[len-1] be len elements in the communication buffer
described by the arguments inoutvec, len, and datatype when the func-
tion returns; then w[i] = u[i] o v[i], for i=0 ,..., len-1, where o is
the reduce operation that the function computes.Informally, we can think of invec and inoutvec as arrays of len ele-
ments that function is combining. The result of the reduction over-
writes values in inoutvec, hence the name. Each invocation of the func-
tion results in the pointwise evaluation of the reduce operator on len elements: i.e, the function returns in inoutvec[i] the value invec[i] oinoutvec[i], for i = 0..., count-1, where o is the combining operation
computed by the function. By 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. General datatypes may be passed to the user function. However, use of datatypes that are not contiguous is likely to lead to inefficiencies. No MPI communication function may be called inside the user function. MPIAbort may be called inside the function in case of an error. NNOOTTEESSSuppose one defines a library of user-defined reduce functions that are
overloaded: The datatype argument is used to select the right execution path at each invocation, according to the types of the operands. Theuser-defined reduce function cannot "decode" the datatype argument that
it is passed, and cannot identify, by itself, the correspondencebetween the datatype handles and the datatype they represent. This cor-
respondence 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 thelibrary and store handles to these datatypes in global, static vari-
ables that are shared by the user code and the library code.EExxaammppllee:: Example of user-defined reduce:
Compute the product of an array of complex numbers, in C. typedef struct { double real,imag; } Complex;/* the user-defined function
*/ void myProd( Complex *in, Complex *inout, int *len, MPIDatatype *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]; MPIOp myOp; MPIDatatype ctype; /* explain to MPI how type Complex is defined */ MPITypecontiguous( 2, MPIDOUBLE, &ctype ); MPITypecommit( &ctype );/* create the complex-product user-op
*/ MPIOpcreate( myProd, True, &myOp ); MPIReduce( a, answer, 100, ctype, myOp, root, comm ); /* At this point, the answer, which consists of 100 Complexes, * resides on process root */The Fortran version of MPIReduce 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 andthe C representation of a datatype handle. Users who plan to mix lan-
guages should define their reduction functions accordingly. NNOOTTEESS OONN CCOOLLLLEECCTTIIVVEE OOPPEERRAATTIIOONNSS The reduction functions ( MPIOp ) do not return an error value. As a result, if the functions detect an error, all they can do is either call MPIAbort or silently skip the problem. Thus, if you change theerror handler from MPIERRORSAREFATAL to something else, for example,
MPIERRORSRETURN , then no error may be indicated.
The reason for this is the performance problems in ensuring that all collective routines return the same error value. EERRRROORRSS Almost all MPI routines return an error value; C routines as the valueof the function and Fortran routines in the last argument. C++ func-
tions do not return errors. If the default error handler is set toMPI::ERRORSTHROWEXCEPTIONS, then on error the C++ exception mechanism
will be used to throw an MPI:Exception object. Before the error value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed withMPICommseterrhandler; the predefined error handler MPIERRORSRETURN
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.SEE ALSO
MPIReduce MPIReducescatter MPIAllreduce MPIScan MPIOpfree Open MPI 1.2 September 2006 MPIOpcreate(3OpenMPI)