A number of chapters refer to deprecated or replaced MPI constructs. These are constructs that continue to be part of the MPI standard, as documented in Chapter Deprecated Functions , but that users are recommended not to continue using, since better solutions were provided with newer versions of MPI. For example, the Fortran binding for MPI-1 functions that have address arguments uses INTEGER. This is not consistent with the C binding, and causes problems on machines with 32 bit INTEGERs and 64 bit addresses. In MPI-2, these functions were given new names with new bindings for the address arguments. The use of the old functions was declared as deprecated. For consistency, here and in a few other cases, new C functions are also provided, even though the new functions are equivalent to the old functions. The old names are deprecated.
Some of the deprecated constructs are now removed, as documented in Chapter Removed Interfaces . They may still be provided by an implementation for backwards compatibility, but are not required.
Table Deprecated and Removed Names and Functions shows a list of all of the deprecated and removed constructs. Note that some C typedefs and Fortran subroutine names are included in this list; they are the types of callback functions.
Deprecated or removed | deprecated | removed | Replacement | |
construct | since | since | ||
MPI_ADDRESS | MPI-2.0 | MPI-3.0 | MPI_GET_ADDRESS | |
MPI_TYPE_HINDEXED | MPI-2.0 | MPI-3.0 | MPI_TYPE_CREATE_HINDEXED | |
MPI_TYPE_HVECTOR | MPI-2.0 | MPI-3.0 | MPI_TYPE_CREATE_HVECTOR | |
MPI_TYPE_STRUCT | MPI-2.0 | MPI-3.0 | MPI_TYPE_CREATE_STRUCT | |
MPI_TYPE_EXTENT | MPI-2.0 | MPI-3.0 | MPI_TYPE_GET_EXTENT | |
MPI_TYPE_UB | MPI-2.0 | MPI-3.0 | MPI_TYPE_GET_EXTENT | |
MPI_TYPE_LB | MPI-2.0 | MPI-3.0 | MPI_TYPE_GET_EXTENT | |
MPI_LB1 | MPI-2.0 | MPI-3.0 | MPI_TYPE_CREATE_RESIZED | |
MPI_UB1 | MPI-2.0 | MPI-3.0 | MPI_TYPE_CREATE_RESIZED | |
MPI_ERRHANDLER_CREATE | MPI-2.0 | MPI-3.0 | MPI_COMM_CREATE_ERRHANDLER | |
MPI_ERRHANDLER_GET | MPI-2.0 | MPI-3.0 | MPI_COMM_GET_ERRHANDLER | |
MPI_ERRHANDLER_SET | MPI-2.0 | MPI-3.0 | MPI_COMM_SET_ERRHANDLER | |
MPI_Handler_function2 | MPI-2.0 | MPI-3.0 | MPI_Comm_errhandler_function2 | |
MPI_KEYVAL_CREATE | MPI-2.0 | MPI_COMM_CREATE_KEYVAL | ||
MPI_KEYVAL_FREE | MPI-2.0 | MPI_COMM_FREE_KEYVAL | ||
MPI_DUP_FN3 | MPI-2.0 | MPI_COMM_DUP_FN3 | ||
MPI_NULL_COPY_FN3 | MPI-2.0 | MPI_COMM_NULL_COPY_FN3 | ||
MPI_NULL_DELETE_FN3 | MPI-2.0 | MPI_COMM_NULL_DELETE_FN3 | ||
MPI_Copy_function2 | MPI-2.0 | MPI_Comm_copy_attr_function2 | ||
COPY_FUNCTION3 | MPI-2.0 | COMM_COPY_ATTR_FUNCTION3 | ||
MPI_Delete_function2 | MPI-2.0 | MPI_Comm_delete_attr_function2 | ||
DELETE_FUNCTION3 | MPI-2.0 | COMM_DELETE_ATTR_FUNCTION3 | ||
MPI_ATTR_DELETE | MPI-2.0 | MPI_COMM_DELETE_ATTR | ||
MPI_ATTR_GET | MPI-2.0 | MPI_COMM_GET_ATTR | ||
MPI_ATTR_PUT | MPI-2.0 | MPI_COMM_SET_ATTR | ||
MPI_COMBINER_HVECTOR_INTEGER4 | - | MPI-3.0 | MPI_COMBINER_HVECTOR4 | |
MPI_COMBINER_HINDEXED_INTEGER4 | - | MPI-3.0 | MPI_COMBINER_HINDEXED4 | |
MPI_COMBINER_STRUCT_INTEGER4 | - | MPI-3.0 | MPI_COMBINER_STRUCT4 | |
MPI::... | MPI-2.2 | MPI-3.0 | C language binding | |
1 Predefined datatype. | ||||
2 Callback prototype definition. | ||||
3 Predefined callback routine. | ||||
4 Constant. | ||||
Other entries are regular MPI routines. | ||||