我到了打开文件的位置,然后关闭它。 但不知道接下来该做什么。我想我应该使用MPI_File_read,但实际上并不知道如何使用它来计算字符数。
这是我现在的代码:
#include "stdafx.h"
#include "mpi.h"
using namespace std;
int _tmain(int argc, char *argv[])
{
int rank;
MPI_Status status;
MPI_File fh;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_File_open(MPI_COMM_WORLD, "file.txt", MPI_MODE_RDONLY, MPI_INFO_NULL, &fh);
MPI_File_close(&fh);
MPI_Finalize();
return 0;
}