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

📄 alltoallv.c

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 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_Alltoallv */#if defined(HAVE_PRAGMA_WEAK)#pragma weak MPI_Alltoallv = PMPI_Alltoallv#elif defined(HAVE_PRAGMA_HP_SEC_DEF)#pragma _HP_SECONDARY_DEF PMPI_Alltoallv  MPI_Alltoallv#elif defined(HAVE_PRAGMA_CRI_DUP)#pragma _CRI duplicate MPI_Alltoallv as PMPI_Alltoallv#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_Alltoallv PMPI_Alltoallv/* This is the default implementation of alltoallv. The algorithm is:      Algorithm: MPI_Alltoallv   Since each process sends/receives different amounts of data to   every other process, we don't know the total message size for all   processes without additional communication. Therefore we simply use   the "middle of the road" isend/irecv algorithm that works   reasonably well in all cases.   We post all irecvs and isends and then do a waitall. We scatter the   order of sources and destinations among the processes, so that all   processes don't try to send/recv to/from the same process at the   same time.    Possible improvements:    End Algorithm: MPI_Alltoallv*/ /* begin:nested */PMPI_LOCAL int MPIR_Alltoallv ( 	void *sendbuf, 	int *sendcnts, 	int *sdispls, 	MPI_Datatype sendtype, 	void *recvbuf, 	int *recvcnts, 	int *rdispls, 	MPI_Datatype recvtype, 	MPID_Comm *comm_ptr ){    int        comm_size, i;    MPI_Aint   send_extent, recv_extent;    int        mpi_errno = MPI_SUCCESS;    MPI_Status *starray;    MPI_Request *reqarray;    int dst, rank;    MPI_Comm comm;        comm = comm_ptr->handle;    comm_size = comm_ptr->local_size;    rank = comm_ptr->rank;        /* Get extent of send and recv types */    MPID_Datatype_get_extent_macro(sendtype, send_extent);    MPID_Datatype_get_extent_macro(recvtype, recv_extent);        /* Lock for collective operation */    MPID_Comm_thread_lock( comm_ptr );    starray = (MPI_Status *) MPIU_Malloc(2*comm_size*sizeof(MPI_Status));    reqarray = (MPI_Request *) MPIU_Malloc(2*comm_size*sizeof(MPI_Request));    for ( i=0; i<comm_size; i++ ) {         dst = (rank+i) % comm_size;        mpi_errno = MPIC_Irecv((char *)recvbuf+rdispls[dst]*recv_extent,                                recvcnts[dst], recvtype, dst,                               MPIR_ALLTOALLV_TAG, comm,                               &reqarray[i]);        if (mpi_errno) return mpi_errno;    }    for ( i=0; i<comm_size; i++ ) {         dst = (rank+i) % comm_size;        mpi_errno = MPIC_Isend((char *)sendbuf+sdispls[dst]*send_extent,                                sendcnts[dst], sendtype, dst,                               MPIR_ALLTOALLV_TAG, comm,                               &reqarray[i+comm_size]);        if (mpi_errno) return mpi_errno;    }    mpi_errno = NMPI_Waitall(2*comm_size, reqarray, starray);    if (mpi_errno == MPI_ERR_IN_STATUS) {        for (i=0; i<2*comm_size; i++) {            if (starray[i].MPI_ERROR != MPI_SUCCESS)                 mpi_errno = starray[i].MPI_ERROR;        }    }        MPIU_Free(reqarray);    MPIU_Free(starray);        /* Unlock for collective operation */    MPID_Comm_thread_unlock( comm_ptr );        return (mpi_errno);}/* end:nested *//* begin:nested */PMPI_LOCAL int MPIR_Alltoallv_inter (     void *sendbuf,     int *sendcnts,     int *sdispls,     MPI_Datatype sendtype,     void *recvbuf,     int *recvcnts,     int *rdispls,     MPI_Datatype recvtype,     MPID_Comm *comm_ptr ){/* Intercommunicator alltoallv. We use a pairwise exchange algorithm   similar to the one used in intracommunicator alltoallv. Since the   local and remote groups can be of different    sizes, we first compute the max of local_group_size,   remote_group_size. At step i, 0 <= i < max_size, each process   receives from src = (rank - i + max_size) % max_size if src <   remote_size, and sends to dst = (rank + i) % max_size if dst <   remote_size.    FIXME: change algorithm to match intracommunicator alltoallv*/    int local_size, remote_size, max_size, i;    MPI_Aint   send_extent, recv_extent;    int        mpi_errno = MPI_SUCCESS;    MPI_Status status;    int src, dst, rank, sendcount, recvcount;    char *sendaddr, *recvaddr;    MPI_Comm comm;        local_size = comm_ptr->local_size;     remote_size = comm_ptr->remote_size;    comm = comm_ptr->handle;    rank = comm_ptr->rank;        /* Get extent of send and recv types */    MPID_Datatype_get_extent_macro(sendtype, send_extent);    MPID_Datatype_get_extent_macro(recvtype, recv_extent);        /* Lock for collective operation */    MPID_Comm_thread_lock( comm_ptr );    /* Use pairwise exchange algorithm. */    max_size = MPIR_MAX(local_size, remote_size);    for (i=0; i<max_size; i++) {        src = (rank - i + max_size) % max_size;        dst = (rank + i) % max_size;        if (src >= remote_size) {            src = MPI_PROC_NULL;            recvaddr = NULL;            recvcount = 0;        }        else {            recvaddr = (char *)recvbuf + rdispls[src]*recv_extent;            recvcount = recvcnts[src];        }        if (dst >= remote_size) {            dst = MPI_PROC_NULL;            sendaddr = NULL;            sendcount = 0;        }        else {            sendaddr = (char *)sendbuf + sdispls[dst]*send_extent;            sendcount = sendcnts[dst];        }        mpi_errno = MPIC_Sendrecv(sendaddr, sendcount, sendtype, dst,                                   MPIR_ALLTOALLV_TAG, recvaddr, recvcount,                                   recvtype, src, MPIR_ALLTOALLV_TAG,                                  comm, &status);         if (mpi_errno) return mpi_errno;    }        /* Unlock for collective operation */    MPID_Comm_thread_unlock( comm_ptr );        return (mpi_errno);}/* end:nested */#endif#undef FUNCNAME#define FUNCNAME MPI_Alltoallv/*@   MPI_Alltoallv - alltoallv   Arguments:+  void *sendbuf - send buffer.  int *sendcnts - send counts.  int *sdispls - send displacements.  MPI_Datatype sendtype - send datatype.  void *recvbuf - receive buffer.  int *recvcnts - receive counts.  int *rdispls - receive displacements.  MPI_Datatype recvtype - receive datatype-  MPI_Comm comm - communicator   Notes:.N Fortran.N Errors.N MPI_SUCCESS@*/int MPI_Alltoallv(void *sendbuf, int *sendcnts, int *sdispls, MPI_Datatype sendtype, void *recvbuf, int *recvcnts, int *rdispls, MPI_Datatype recvtype, MPI_Comm comm){    static const char FCNAME[] = "MPI_Alltoallv";    int mpi_errno = MPI_SUCCESS;    MPID_Comm *comm_ptr = NULL;    MPID_MPI_STATE_DECL(MPID_STATE_MPI_ALLTOALLV);    MPID_MPI_COLL_FUNC_ENTER(MPID_STATE_MPI_ALLTOALLV);    /* Verify that MPI has been initialized */#   ifdef HAVE_ERROR_CHECKING    {        MPID_BEGIN_ERROR_CHECKS;        {	    MPIR_ERRTEST_INITIALIZED(mpi_errno);	    MPIR_ERRTEST_COMM(comm, mpi_errno);            if (mpi_errno != MPI_SUCCESS) {                return MPIR_Err_return_comm( 0, FCNAME, mpi_errno );            }	}        MPID_END_ERROR_CHECKS;    }#   endif /* HAVE_ERROR_CHECKING */    /* Get handles to MPI objects. */    MPID_Comm_get_ptr( comm, comm_ptr );#   ifdef HAVE_ERROR_CHECKING    {        MPID_BEGIN_ERROR_CHECKS;        {	    MPID_Datatype *sendtype_ptr=NULL, *recvtype_ptr=NULL;            int i, comm_size;	                MPID_Comm_valid_ptr( comm_ptr, mpi_errno );            if (mpi_errno != MPI_SUCCESS) {                MPID_MPI_COLL_FUNC_EXIT(MPID_STATE_MPI_ALLTOALLV);                return MPIR_Err_return_comm( NULL, FCNAME, mpi_errno );            }            comm_size = comm_ptr->local_size;            for (i=0; i<comm_size; i++) {                MPIR_ERRTEST_COUNT(sendcnts[i], mpi_errno);                MPIR_ERRTEST_COUNT(recvcnts[i], mpi_errno);                MPIR_ERRTEST_DATATYPE(sendcnts[i], sendtype, mpi_errno);                MPIR_ERRTEST_DATATYPE(recvcnts[i], recvtype, mpi_errno);	    }            if (HANDLE_GET_KIND(sendtype) != HANDLE_KIND_BUILTIN) {                MPID_Datatype_get_ptr(sendtype, sendtype_ptr);                MPID_Datatype_valid_ptr( sendtype_ptr, mpi_errno );            }            if (HANDLE_GET_KIND(recvtype) != HANDLE_KIND_BUILTIN) {                MPID_Datatype_get_ptr(recvtype, recvtype_ptr);                MPID_Datatype_valid_ptr( recvtype_ptr, mpi_errno );            }            if (mpi_errno != MPI_SUCCESS) {                MPID_MPI_COLL_FUNC_EXIT(MPID_STATE_MPI_ALLTOALLV);                return MPIR_Err_return_comm( comm_ptr, FCNAME, mpi_errno );            }        }        MPID_END_ERROR_CHECKS;    }#   endif /* HAVE_ERROR_CHECKING */    /* ... body of routine ...  */    if (comm_ptr->coll_fns != NULL && comm_ptr->coll_fns->Alltoallv != NULL)    {	mpi_errno = comm_ptr->coll_fns->Alltoallv(sendbuf, sendcnts, sdispls,                                                 sendtype, recvbuf, recvcnts,                                                 rdispls, recvtype, comm_ptr);    }    else    {	MPIR_Nest_incr();        if (comm_ptr->comm_kind == MPID_INTRACOMM)             /* intracommunicator */            mpi_errno = MPIR_Alltoallv(sendbuf, sendcnts, sdispls,                                       sendtype, recvbuf, recvcnts,                                       rdispls, recvtype, comm_ptr);        else {            /* intercommunicator */	    mpi_errno = MPIR_Err_create_code( MPI_ERR_COMM, 					      "**intercommcoll",					      "**intercommcoll %s", FCNAME );            /*mpi_errno = MPIR_Alltoallv_inter(sendbuf, sendcnts, sdispls,                                             sendtype, recvbuf, recvcnts,                                             rdispls, recvtype, comm_ptr);*/        }	MPIR_Nest_decr();    }    if (mpi_errno == MPI_SUCCESS)    {	MPID_MPI_COLL_FUNC_EXIT(MPID_STATE_MPI_ALLTOALLV);	return MPI_SUCCESS;    }    else    {	MPID_MPI_COLL_FUNC_EXIT(MPID_STATE_MPI_ALLTOALLV);	return MPIR_Err_return_comm( comm_ptr, FCNAME, mpi_errno );    }    MPID_MPI_COLL_FUNC_EXIT(MPID_STATE_MPI_ALLTOALLV);    return MPI_SUCCESS;}

⌨️ 快捷键说明

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