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

时间:2011-05-07 20:11:53

标签: c++ mpi

我试图运行以下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.

1 个答案:

答案 0 :(得分:2)

只需执行错误消息所说的内容:运行mpd&amp;在命令行上。

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