NAME
MPI_Type_c2f - Convert a C MPI data type into a FORTRAN MPI data type SYNOPSIS
#include <mpi.h>
MPI_Fint MPI_Type_c2f(MPI_Datatype type );
#include <pmpi.h>
MPI_Fint PMPI_Type_c2f(MPI_Datatype type );
INPUT PARAMETER
type - data type handle from C (handle)
RETURN VALUE
FORTRAN data type handle (handle)
DESCRIPTION
The MPI_Type_c2f() function is used to convert a C data type handle type , into a FORTRAN integer-sized data type 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_f2c (3)
|