Handles to derived datatypes can be passed to a communication call wherever a datatype argument is required. A call of the form MPI_SEND(buf, count, datatype, ...), where , is interpreted as if the call was passed a new datatype that is the concatenation of count copies of datatype. Thus, MPI_SEND(buf, count, datatype, dest, tag, comm) is equivalent to,
Similar statements apply to all other communication procedures that have a count and datatype argument.
Suppose that a send operation MPI_SEND(buf, count, datatype, dest, tag, comm) is executed, where datatype has type map,
and extent extent. (Explicit lower bound and upper bound markers are not listed in the type map, but they affect the value of extent.) The send operation sends entries, where entry i · n + j is at location
and has type , for and j = 0 ,..., n-1. These entries need not be contiguous, nor distinct; their order can be arbitrary.
The variable stored at address addri,j in the calling program should be of a type that matches , where type matching is defined as in Section Type Matching Rules. The message sent contains entries, where entry i · n +j has type .
Similarly, suppose that a receive operation MPI_RECV(buf, count, datatype, source, tag, comm, status) is executed, where datatype has type map, with extent extent. (Again, explicit lower bound and upper bound markers are not listed in the type map, but they affect the value of extent.) This receive operation receives entries, where entry i · n + j is at location
and has type . If the incoming message consists of k elements, then we must have ; the i · n + j-th element of the message should have a type that matches .
Type matching is defined according to the type signature of the corresponding datatypes, that is, the sequence of basic type components. Type matching does not depend on some aspects of the datatype definition, such as the displacements (layout in memory) or the intermediate types used.
Example
This example shows that type matching is defined in terms of
the basic types that a derived type consists of.
Each of the sends matches any of the receives.
A datatype may specify overlapping entries. The use of such a datatype in any communication in association with a buffer updated by the operation is erroneous. (This is erroneous even if the actual message received is short enough not to write any entry more than once.)
Suppose that MPI_RECV(buf, count, datatype, dest, tag, comm, status) is executed, where datatype has type map, The received message need not fill all the receive buffer, nor does it need to fill a number of locations that is a multiple of n. Any number, k, of basic elements can be received, where . The number of basic elements received can be retrieved from status using the query procedure MPI_GET_ELEMENTS.
MPI_GET_ELEMENTS(status, datatype, count) | |
IN status | return status of receive operation (status) |
IN datatype | datatype used by receive operation (handle) |
OUT count | number of received basic elements (integer) |
The datatype argument should match the argument provided by the receive call that set the status variable. For both procedures, if the OUT parameter cannot express the value to be returned (e.g., if the parameter is too small to hold the output value), it is set to MPI_UNDEFINED.
The previously defined procedure MPI_GET_COUNT (Section Return Status), has a different behavior. It returns the number of ``top-level entries'' received, i.e., the number of ``copies'' of type datatype. In the previous example, MPI_GET_COUNT may return any integer value k, where . If MPI_GET_COUNT returns k, then the number of basic elements received (and the value returned by MPI_GET_ELEMENTS) is n · k. If the number of basic elements received is not a multiple of n, that is, if the receive operation has not received an integral number of datatype ``copies,'' then MPI_GET_COUNT sets the value of count to MPI_UNDEFINED.
Example
Usage of MPI_GET_COUNT and
MPI_GET_ELEMENTS.
The procedure MPI_GET_ELEMENTS can also be used after a probe to find the number of elements in the probed message. Note that the MPI_GET_COUNT and MPI_GET_ELEMENTS return the same values when they are used with basic datatypes as long as the limits of their respective count arguments are not exceeded.
Rationale.
The extension given to the definition of MPI_GET_COUNT seems
natural: one would expect this procedure to return the value of the
count argument, when the receive buffer is filled.
Sometimes datatype represents
a basic unit of data one wants to transfer,
for example, a record in an array of records (structures).
One should be able to find out how many components were received
without bothering to divide by the number of elements in each
component. However, on other occasions, datatype is used to
define a complex layout of data in the receiver memory, and does not represent
a basic unit of data for transfers. In such cases, one needs to use
the procedure MPI_GET_ELEMENTS.
( End of rationale.)
Advice
to implementors.
The definition implies that a receive cannot change the value of
storage outside the entries defined to compose the communication
buffer.
In particular, the definition implies that padding space in a structure
should not be modified when such a structure is copied from one process to
another. This would
prevent the obvious optimization of copying the structure, together
with the padding, as one contiguous block.
The implementation is free to do this optimization when it does not
impact the outcome of the computation.
The user can ``force'' this optimization by explicitly including
padding as part of the message.
( End of advice to implementors.)