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

📄 file_set_view.c

📁 fortran并行计算包
💻 C
字号:
/*   (C) 2004 by Argonne National Laboratory.       See COPYRIGHT in top-level directory.*/#include "collchk.h" int MPI_File_set_view(MPI_File fh, MPI_Offset disp, MPI_Datatype etype,                       MPI_Datatype filetype, char *datarep, MPI_Info info){    int g2g = 1;    char call[COLLCHK_SM_STRLEN];    MPI_Comm comm;    sprintf(call, "FILE_SET_VIEW");    /* Check if init has been called */    g2g = CollChk_is_init();    if(g2g) {        /* get the comm */        if (!CollChk_get_fh(fh, &comm)) {            return CollChk_err_han("File has not been Opened",                                   COLLCHK_ERR_FILE_NOT_OPEN,                                    call, MPI_COMM_WORLD);        }        /* check for call consistancy */        CollChk_same_call(comm, call);        /* check type consistancy */        CollChk_dtype_bcast(comm, etype, 1, 0, call);        /* check datarep consistancy */        CollChk_same_datarep(comm, datarep, call);        /* make the call */        return PMPI_File_set_view(fh, disp, etype, filetype, datarep, info);    }    else {        /* init not called */        return CollChk_err_han("MPI_Init() has not been called!",                                COLLCHK_ERR_NOT_INIT, call, MPI_COMM_WORLD);    }}

⌨️ 快捷键说明

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