gpt4 book ai didi

c++ - 在四核处理器上运行 MPICH 时出错

转载 作者:太空狗 更新时间:2023-10-29 21:50:35 27 4
gpt4 key购买 nike

我试图运行以下 MPI 代码,但遇到了如下所示的错误。如果有人能帮助我,我将不胜感激。

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

int main(){
int rank, size;

MPI_Init(NULL, NULL);

// MPI_Comm_rank(MPI_COMM_WORLD, &rank);
// MPI_Comm_size(MPI_COMM_WORLD, &size);

// printf("Hello from %d of %d\n", rank, size);

MPI_Finalize();

return 0;
}

错误:

$ mpirun -np 4 ./a.out
mpiexec_ubuntu: cannot connect to local mpd (/tmp/mpd2.console_joseph); possible causes:
1. no mpd is running on this host
2. an mpd is running but was started without a "console" (-n option)
In case 1, you can start an mpd on this host with:
mpd &
and you will be able to run jobs just on this host.

最佳答案

只需按照错误消息中的说明进行操作:在命令行上运行 mpd&。

我强烈建议您尽可能使用 OpenMPI 而不是 MPICH。

关于c++ - 在四核处理器上运行 MPICH 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5923731/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com