⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type_match_size.c

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 C
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#include "mpiimpl.h"/* -- Begin Profiling Symbol Block for routine MPI_Type_match_size */#if defined(HAVE_PRAGMA_WEAK)#pragma weak MPI_Type_match_size = PMPI_Type_match_size#elif defined(HAVE_PRAGMA_HP_SEC_DEF)#pragma _HP_SECONDARY_DEF PMPI_Type_match_size  MPI_Type_match_size#elif defined(HAVE_PRAGMA_CRI_DUP)#pragma _CRI duplicate MPI_Type_match_size as PMPI_Type_match_size#endif/* -- End Profiling Symbol Block *//* Define MPICH_MPI_FROM_PMPI if weak symbols are not supported to build   the MPI routines */#ifndef MPICH_MPI_FROM_PMPI#define MPI_Type_match_size PMPI_Type_match_size#endif#undef FUNCNAME#define FUNCNAME MPI_Type_match_size/*@   MPI_Type_match_size - Find an MPI datatype matching a specified size   Input Parameters:+ typeclass - generic type specifier (integer) - size - size, in bytes, of representation (integer)    Output Parameter:. type - datatype with correct type, size (handle) Notes:'typeclass' is one of 'MPI_TYPECLASS_REAL', 'MPI_TYPECLASS_INTEGER' and 'MPI_TYPECLASS_COMPLEX', corresponding to the desired typeclass. The function returns an MPI datatype matching a local variable of type '( typeclass, size )'. .N ThreadSafe.N Fortran.N Errors.N MPI_SUCCESS.N MPI_ERR_ARG@*/int MPI_Type_match_size(int typeclass, int size, MPI_Datatype *datatype){    static const char FCNAME[] = "MPI_Type_match_size";    int mpi_errno = MPI_SUCCESS;    static const char *tname = 0;    static MPI_Datatype real_types[] = { MPI_FLOAT, MPI_DOUBLE#ifdef HAVE_LONG_DOUBLE					 ,MPI_LONG_DOUBLE#endif    };    static MPI_Datatype int_types[] = { MPI_CHAR, MPI_SHORT, MPI_INT, 					MPI_LONG#ifdef HAVE_LONG_LONG_INT					, MPI_LONG_LONG#endif    };    static MPI_Datatype complex_types[] = { MPI_COMPLEX, MPI_DOUBLE_COMPLEX };    MPI_Datatype matched_datatype = MPI_DATATYPE_NULL;    int i, tsize;    MPID_MPI_STATE_DECL(MPID_STATE_MPI_TYPE_MATCH_SIZE);    MPIR_ERRTEST_INITIALIZED_ORDIE();        MPID_CS_ENTER();    MPID_MPI_FUNC_ENTER(MPID_STATE_MPI_TYPE_MATCH_SIZE);        /* Validate parameters and objects (post conversion) */#   ifdef HAVE_ERROR_CHECKING    {        MPID_BEGIN_ERROR_CHECKS;        {	    MPIR_ERRTEST_ARGNULL( datatype, "datatype", mpi_errno );            if (mpi_errno) goto fn_fail;        }        MPID_END_ERROR_CHECKS;    }#   endif /* HAVE_ERROR_CHECKING */    /* ... body of routine ...  */        /* FIXME: Should make use of Fortran optional types (e.g., MPI_INTEGER2) */    /* The following implementation follows the suggestion in the       MPI-2 standard.         The version in the MPI-2 spec makes use of the Fortran optional types;       currently, we don't support these from C (see mpi.h.in).         Thus, we look at the candidate types and make use of the first fit.    */    switch (typeclass) {    case MPI_TYPECLASS_REAL:	tname = "MPI_TYPECLASS_REAL";	for (i=0; i<sizeof(real_types)/sizeof(MPI_Datatype); i++) {	    if (real_types[i] == MPI_DATATYPE_NULL) { continue; }	    MPIR_Nest_incr();	    NMPI_Type_size( real_types[i], &tsize );	    MPIR_Nest_decr();	    if (tsize == size) {		matched_datatype = real_types[i];		break;	    }	}	break;    case MPI_TYPECLASS_INTEGER:	tname = "MPI_TYPECLASS_INTEGER";	for (i=0; i<sizeof(int_types)/sizeof(MPI_Datatype); i++) {	    if (int_types[i] == MPI_DATATYPE_NULL) { continue; }	    MPIR_Nest_incr();	    NMPI_Type_size( int_types[i], &tsize );	    MPIR_Nest_decr();	    if (tsize == size) {		matched_datatype = int_types[i];		break;	    }	}	break;    case MPI_TYPECLASS_COMPLEX:	tname = "MPI_TYPECLASS_COMPLEX";	for (i=0; i<sizeof(complex_types)/sizeof(MPI_Datatype); i++) {	    if (complex_types[i] == MPI_DATATYPE_NULL) { continue; }	    MPIR_Nest_incr();	    NMPI_Type_size( complex_types[i], &tsize );	    MPIR_Nest_decr();	    if (tsize == size) {		matched_datatype = complex_types[i];		break;	    }	}	break;    default:	/* --BEGIN ERROR HANDLING-- */	MPIU_ERR_SETANDSTMT(mpi_errno, MPI_ERR_ARG, break, "**typematchnoclass");	/* --END ERROR HANDLING-- */    }    if (mpi_errno == MPI_SUCCESS) {	if (matched_datatype == MPI_DATATYPE_NULL) {	    /* --BEGIN ERROR HANDLING-- */	    MPIU_ERR_SETANDSTMT2(mpi_errno, MPI_ERR_ARG,;, "**typematchsize", "**typematchsize %s %d", tname, size);	    /* --END ERROR HANDLING-- */	}	else {	    *datatype = matched_datatype;	}    }    if (mpi_errno != MPI_SUCCESS) goto fn_fail;    /* ... end of body of routine ... */  fn_exit:    MPID_MPI_FUNC_EXIT(MPID_STATE_MPI_TYPE_MATCH_SIZE);    MPID_CS_EXIT();    return mpi_errno;  fn_fail:    /* --BEGIN ERROR HANDLING-- */#   ifdef HAVE_ERROR_CHECKING    {	mpi_errno = MPIR_Err_create_code(	    mpi_errno, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OTHER, "**mpi_type_match_size",	    "**mpi_type_match_size %d %d %p",typeclass, size, datatype);    }#   endif    mpi_errno = MPIR_Err_return_comm( NULL, FCNAME, mpi_errno );    goto fn_exit;    /* --END ERROR HANDLING-- */}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -