NAME
MPI_Type_f2c - Convert a FORTRAN MPI datatype into a C MPI datatype SYNOPSIS
#include <mpi.h>
MPI_Datatype MPI_Type_f2c(MPI_Fint type );
#include <pmpi.h>
MPI_Datatype PMPI_Type_f2c(MPI_Fint type );
INPUT PARAMETER
type - data type handle from FORTRAN (handle)
RETURN VALUE
C data type handle (handle)
DESCRIPTION
The MPI_Type_f2c() function is used to convert a FORTRAN integer-sized data type handle type , into a C MPI_Datatype handle. This function will never raise an error.
Since this function is compiled inline for performance reasons, a profiler will not be able to hook it. (In this MPI implementation, the C and FORTRAN handles are identical for this type of handle.) PMPI_Type_f2c() is the profiling version of this function.
SEE ALSO
MPI_Type_c2f (3)
|