1

我正在尝试使用 C 中的 MPI-IO 读取多个文件。我正在遵循以下示例:http ://users.abo.fi/Mats.Aspnas/PP2010/examples/MPI/readfile1.c

但是我在一个矩阵中读取一个双精度数而不是一串字符。这是该实现:

/*
Simple MPI-IO program that demonstrate parallel reading from a file.
Compile the program with 'mpicc -O2 readfile1.c -o readfile1'
*/

#include <stdlib.h>
#include <stdio.h>
#include "mpi.h"

#define FILENAME "filename.dat"

double** ArrayAllocation() {
    int i;
    double** array2D;
    array2D= (double**) malloc(num_procs*sizeof(double*));
    for(i = 0; i < num_procs; i++) {
        twoDarray[i] = (double*) malloc(column_size*sizeof(double));
    }
    return array2D;
}

int main(int argc, char* argv[]) {
  int i, np, myid;
  int bufsize, nrchar;
  double *buf;          /* Buffer for reading */
  double **matrix = ArrayAllocation();
  MPI_Offset filesize;
  MPI_File myfile;    /* Shared file */ 
  MPI_Status status;  /* Status returned from read */

  /* Initialize MPI */
  MPI_Init(&argc, &argv);
  MPI_Comm_rank(MPI_COMM_WORLD, &myid);
  MPI_Comm_size(MPI_COMM_WORLD, &np);

  /* Open the files */
  MPI_File_open (MPI_COMM_WORLD, FILENAME, MPI_MODE_RDONLY,
         MPI_INFO_NULL, &myfile);

  /* Get the size of the file */
  MPI_File_get_size(myfile, &filesize);
  /* Calculate how many elements that is */
  filesize = filesize/sizeof(double);
  /* Calculate how many elements each processor gets */
  bufsize = filesize/np;
  /* Allocate the buffer to read to, one extra for terminating null char */
  buf = (double *) malloc((bufsize)*sizeof(double));
  /* Set the file view */
  MPI_File_set_view(myfile, myid*bufsize*sizeof(double), MPI_DOUBLE,
             MPI_DOUBLE,"native", MPI_INFO_NULL);
  /* Read from the file */
  MPI_File_read(myfile, buf, bufsize, MPI_DOUBLE, &status);
  /* Find out how many elemyidnts were read */
  MPI_Get_count(&status, MPI_DOUBLE, &nrchar);
  /* Set terminating null char in the string */
  //buf[nrchar] = (double)0;
  printf("Process %2d read %d characters: ", myid, nrchar);

  int j;
  for (j = 0; j <bufsize;j++){
    matrix[myid][j] = buf[j];
  }

  /* Close the file */
  MPI_File_close(&myfile);

  if (myid==0) {
    printf("Done\n");
  }

  MPI_Finalize();
  exit(0);
}

但是,当我在关闭第一个文件后尝试调用 MPI_File_open 时,出现错误。我需要多个通信器来执行此操作吗?任何提示将不胜感激。

4

1 回答 1

2

上面的代码ArrayAllocation与主程序的逻辑不太匹配。在初始化 MPI 之前,矩阵被分配为指向双精度向量的指针数组,因此无法将行数设置为 MPI 进程数。

column_size确定文件大小之前也不知道。

按行存储矩阵是 C 语言中的一般约定。违反此约定可能会使您或您的代码的读者感到困惑。

总而言之,为了让这个程序正常工作,你需要声明

 int num_procs, column_size;

作为定义之前的全局变量,ArrayAllocation并将对该函数的调用移至计算 bufsize 的行下方:

 ...
 /* Calculate how many elements each processor gets */
 bufsize = filesize/np;

 num_procs = np;
 column_size = bufsize;
 double **matrix = ArrayAllocation();
 ...

通过上述修改,此示例应该适用于任何支持 MPI-IO 的 MPI 实现。我已经用 OpenMPI 1.2.8 对其进行了测试。

为了生成测试文件,您可以使用例如以下代码:

 FILE* f = fopen(FILENAME,"w");
 double x = 0;
 for(i=0;i<100;i++){
   fwrite(&x, 1,sizeof(double), f);
   x +=0.1;
 }
 fclose(f);
于 2012-04-22T10:28:12.973 回答