我在尝试用开放MPI学习并行计算。我在MacBook Pro上使用Ubuntu16引导。
我已经安装了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
、./hello_world -np 4
等等都得到了相同的结果。它总是写:
来自处理器ubuntu mac的Hello world,在1个处理器中排名0
我不明白为什么它不能在几个处理器上运行。。。我是否启动错误,或是我的配置或其他?
最佳答案
如果运行不正确,则应使用mpirun
或mpiexec
启动程序,以便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
标志生成所需数量的进程。关于c - Ubuntu上的MPI代码仅使用一个处理器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46264794/