alltoall.c

来自「fortran并行计算包」· C语言 代码 · 共 39 行

C
39
字号
/*   (C) 2004 by Argonne National Laboratory.       See COPYRIGHT in top-level directory.*/#include "collchk.h" #define BUFFS_NOT_SHARED 0int MPI_Alltoall( void* sbuff, int scnt, MPI_Datatype stype,                  void* rbuff, int rcnt, MPI_Datatype rtype,                  MPI_Comm comm){    int             g2g = 1;    char            call[COLLCHK_SM_STRLEN];    sprintf( call, "ALLTOALL" );    /* Check if init has been called */    g2g = CollChk_is_init();    if( g2g ) {        /* check call consistency */        CollChk_same_call( comm, call );                /* check datatype signature consistency */        /* This is the same datatype signature test as MPI_Allgather */        CollChk_dtype_allgather(comm, stype, scnt, rtype, rcnt,                                BUFFS_NOT_SHARED, call);        /* make the call */        return (PMPI_Alltoall(sbuff, scnt, stype, rbuff, rcnt, rtype, comm));    }    else {        /* init not called */        return CollChk_err_han( "MPI_Init() has not been called!",                                COLLCHK_ERR_NOT_INIT, call, comm );    }}

⌨️ 快捷键说明

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