在Ubuntu上使用openmpi管理进程通常需要使用mpirun命令来启动并管理多个进程。以下是一些基本步骤:
sudo apt-get install openmpi-bin
#include <stdio.h>
#include <mpi.h>
int main(int argc, char** argv) {
MPI_Init(&argc, &argv);
int rank;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
printf("Hello from process %d\n", rank);
MPI_Finalize();
return 0;
}
然后使用以下命令编译该程序:
mpicc hello.c -o hello
mpirun -np 4 ./hello
这将启动4个进程,并输出每个进程的“Hello from process x”消息。
mpirun --help
通过这些步骤,您可以在Ubuntu上使用OpenMPI来管理并行进程。