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

📄 test.c

📁 fortran并行计算包
💻 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_Test */#if defined(HAVE_PRAGMA_WEAK)#pragma weak MPI_Test = PMPI_Test#elif defined(HAVE_PRAGMA_HP_SEC_DEF)#pragma _HP_SECONDARY_DEF PMPI_Test  MPI_Test#elif defined(HAVE_PRAGMA_CRI_DUP)#pragma _CRI duplicate MPI_Test as PMPI_Test#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#undef MPI_Test#define MPI_Test PMPI_Test#endif#undef FUNCNAME#define FUNCNAME MPI_Test/*@    MPI_Test  - Tests for the completion of a requestInput Parameter:. request - MPI request (handle) Output Parameter:+ flag - true if operation completed (logical) - status - status object (Status).  May be 'MPI_STATUS_IGNORE'..N ThreadSafe.N waitstatus.N Fortran.N FortranStatus.N Errors.N MPI_SUCCESS.N MPI_ERR_REQUEST.N MPI_ERR_ARG@*/int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status){    static const char FCNAME[] = "MPI_Test";    MPID_Request *request_ptr = NULL;    int active_flag;    int mpi_errno = MPI_SUCCESS;    MPID_MPI_STATE_DECL(MPID_STATE_MPI_TEST);    MPIR_ERRTEST_INITIALIZED_ORDIE();        MPIU_THREAD_SINGLE_CS_ENTER("pt2pt");    MPID_MPI_PT2PT_FUNC_ENTER(MPID_STATE_MPI_TEST);    /* Validate parameters, especially handles needing to be converted */#   ifdef HAVE_ERROR_CHECKING    {        MPID_BEGIN_ERROR_CHECKS;        {	    MPIR_ERRTEST_ARGNULL(request, "request", mpi_errno);	    if (mpi_errno) goto fn_fail;	    	    MPIR_ERRTEST_REQUEST_OR_NULL(*request, mpi_errno);	    if (mpi_errno) goto fn_fail;	}        MPID_END_ERROR_CHECKS;    }#   endif /* HAVE_ERROR_CHECKING */        /* Convert MPI object handles to object pointers */    MPID_Request_get_ptr( *request, request_ptr );        /* Validate parameters and objects (post conversion) */#   ifdef HAVE_ERROR_CHECKING    {        MPID_BEGIN_ERROR_CHECKS;        {	    if (*request != MPI_REQUEST_NULL)	    { 		/* Validate request_ptr */		MPID_Request_valid_ptr( request_ptr, mpi_errno );	    }	    	    MPIR_ERRTEST_ARGNULL(flag, "flag", mpi_errno);	    /* NOTE: MPI_STATUS_IGNORE != NULL */	    MPIR_ERRTEST_ARGNULL(status, "status", mpi_errno);	                if (mpi_errno) goto fn_fail;        }        MPID_END_ERROR_CHECKS;    }#   endif /* HAVE_ERROR_CHECKING */    /* ... body of routine ...  */        /* If this is a null request handle, then return an empty status */    if (*request == MPI_REQUEST_NULL)    {	MPIR_Status_set_empty(status);	*flag = TRUE;	goto fn_exit;    }        *flag = FALSE;    /* If the request is already completed AND we want to avoid calling     the progress engine, we could make the call to MPID_Progress_test     conditional on the request not being completed. */    mpi_errno = MPID_Progress_test();    if (mpi_errno != MPI_SUCCESS) goto fn_fail;    if (request_ptr->kind == MPID_UREQUEST && request_ptr->poll_fn != NULL)     {	mpi_errno = (request_ptr->poll_fn)(request_ptr->grequest_extra_state, 			status);	if (mpi_errno != MPI_SUCCESS) goto fn_fail;    }        if (*request_ptr->cc_ptr == 0)    {	mpi_errno = MPIR_Request_complete(request, request_ptr, status, 					  &active_flag);	*flag = TRUE;	if (mpi_errno) { MPIU_ERR_POP(mpi_errno); }	/* Fall through to the exit */    }    /* ... end of body of routine ... */      fn_exit:	MPID_MPI_PT2PT_FUNC_EXIT(MPID_STATE_MPI_TEST);	MPIU_THREAD_SINGLE_CS_EXIT("pt2pt");	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_test",	    "**mpi_test %p %p %p", request, flag, status);    }#   endif    mpi_errno = MPIR_Err_return_comm(request_ptr ? request_ptr->comm : NULL, 				     FCNAME, mpi_errno);    goto fn_exit;    /* --END ERROR HANDLING-- */}

⌨️ 快捷键说明

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