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

📄 io35.c

📁 The example for Boor USING MPI2
💻 C
字号:
/* parallel MPI read with arbitrary number of processes*/#include "mpi.h"#include <stdio.h>int main(int argc, char *argv[]){    int myrank, numprocs, bufsize, *buf, count;    MPI_File thefile;    MPI_Status status;    MPI_Offset filesize;    MPI_Init(&argc, &argv);    MPI_Comm_rank(MPI_COMM_WORLD, &myrank);    MPI_Comm_size(MPI_COMM_WORLD, &numprocs);    MPI_File_open(MPI_COMM_WORLD, "testfile", MPI_MODE_RDONLY,		  MPI_INFO_NULL, &thefile);    MPI_File_get_size(thefile, &filesize); /* in bytes */    filesize = filesize / sizeof(int);     /* in number of ints */    bufsize = filesize / numprocs + 1;     /* local number to read */    buf = (int *) malloc (bufsize * sizeof(int));    MPI_File_set_view(thefile, myrank * bufsize * sizeof(int),		      MPI_INT, MPI_INT, "native", MPI_INFO_NULL);    MPI_File_read(thefile, buf, bufsize, MPI_INT, &status);    MPI_Get_count(&status, MPI_INT, &count);    printf("process %d read %d ints\n", myrank, count);    MPI_File_close(&thefile);    MPI_Finalize();    return 0;}

⌨️ 快捷键说明

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