使用MPI计算文本文件的字符数

时间:2018-01-20 23:46:00

标签: c++ mpi

编辑:正如评论中提到的,我的问题不够准确。 我的确切任务是“创建一个使用MPI计算保存在.txt文件中的字符数的应用程序 - 应用程序应该是同步的。”

我到了打开文件的位置,然后关闭它。 但不知道接下来该做什么。我想我应该使用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;
}

0 个答案:

没有答案