如何使用MPI程序从命令行读取参数?

时间:2015-03-09 21:49:57

标签: c++ command-line mpi

如何在C ++中从命令行读取参数?

我目前有这段代码:

int data_size = 0;
std::cout << "Please enter an integer value: ";
std::cin >> data_size;
std::cout << "The value you entered is " << data_size;

主要:

int main(int argc, char** argv) {

        int data_size = 0;
        std::cout << "Please enter an integer value: ";
        std::cin >> data_size;
        std::cout << "The value you entered is " << data_size; 


    // initialise the MPI library
    MPI_Init(NULL, NULL);

    // determine the world size
    int world_size;
    MPI_Comm_size(MPI_COMM_WORLD, &world_size);

    // determine our rank in the world
    int world_rank;
    MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);

    std::cout << "rank " << world_rank << " size " << world_size << std::endl;

    if (world_rank == 0){
        coordinator(world_size);
    }
    else{
        participant(world_rank, world_size);
    }

    MPI_Finalize();

    return 0;
}

它可以工作,但它一直要求我输入4次整数值 然后当我输入一个数字时,命令行会冻结。

这是我在命令行中得到的内容

C:\Users\Roland\Documents\Visual Studio 2013\Projects\DistributedSystems\Debug>m
piexec -n 4 .\DistributedSystems.exe
Please enter an integer value:
Please enter an integer value:
Please enter an integer value:
Please enter an integer value: 

1 个答案:

答案 0 :(得分:3)

使用MPI程序,使用std::cin阅读内容并不是一个好主意。我不知道你怎么能让它以这种方式工作,你就是不应该。

以下是您的替代选择:

如果代码的输入小到足以作为命令行参数传递,请执行此操作。在您的示例中,输入代码块将更改为

// Do some error handling if needed, then
int data_size = std::atoi(argv[1]);

并开始工作

mpiexec -n 4 .\DistributedSystems.exe k

k是您想要data_size的数字。

如果为了方便使用,你应该达到输入量大的点,将其写入文件并传递输入文件名,如上所述。然后,每个进程都可以在自己的std::ifstream中打开该文件,并从那里读取数据。

根据Rob Latham,这项工作是特定于实现的行为。但是,如果您的系统使用命令行界面,您通常可以期望它能够正常工作。