Ubuntu上的MPI代码只使用了一个处理器

时间:2017-09-17 13:51:11

标签: c mpi openmpi processor

我正在尝试使用Open MPI学习并行计算。我在MacBook Pro上使用Ubuntu 16启动。

我已安装OpenMP并尝试运行hello_world进行测试。

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

int main(int argc, char** argv) {
// Initialize the MPI environment
MPI_Init(NULL, NULL);

// Get the number of processes
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);

// Get the rank of the process
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);

// Get the name of the processor
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);

// Print off a hello world message
printf("Hello world from processor %s, rank %d"
       " out of %d processors\n",
       processor_name, world_rank, world_size);

// Finalize the MPI environment.
MPI_Finalize();
}

使用mpicc编译它没有问题但是当我尝试启动它时,./hello_world -n 4./hello_world -n 2,{{1}的结果相同等等。

总是写道:

  

处理器ubuntu-mac的Hello world,1个处理器中的0级

我不明白为什么它无法在多个处理器上运行...我是否错误地启动它或者是我的配置还是其他任何东西?

1 个答案:

答案 0 :(得分:3)

您运行不正确,程序应使用mpirunmpiexec启动,以便MPI可以生成所需数量的进程。假设您的程序位于文件hello.c中,您可以按如下方式编译和运行它:

mpicc -o hello hello.c
mpirun -np 4 ./hello

其中应显示以下示例输出:

Hello world from processor sagan, rank 1 out of 4 processors
Hello world from processor sagan, rank 2 out of 4 processors
Hello world from processor sagan, rank 3 out of 4 processors
Hello world from processor sagan, rank 0 out of 4 processors

独立运行程序,就像你正在做的那样,只会产生一个进程,因为hello程序不会解析你给它的标志-n。另一方面,mpirun使用-np标志来生成所需数量的进程。