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

📄 win_create.c

📁 fortran并行计算包
💻 C
字号:
/*   (C) 2004 by Argonne National Laboratory.       See COPYRIGHT in top-level directory.*/#include "collchk.h" int MPI_Win_create(void *base, MPI_Aint size, int disp_unit,                   MPI_Info info, MPI_Comm comm, MPI_Win *win){    int g2g = 1, ierr;    char call[COLLCHK_SM_STRLEN];    sprintf(call, "WIN_CREATE");    /* Check if init has been called */    g2g = CollChk_is_init();    if(g2g) {        /* check for call consistancy */        CollChk_same_call(comm, call);        /* make the call */        ierr = PMPI_Win_create(base, size, disp_unit, info, comm, win);         /* add the comm to the window */        CollChk_add_win(*win, comm);        return ierr;    }    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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -