【并行】Ubuntu安装MPI库
1、环境搭建
终端:sudo apt-get install mpich2
安装的是mpich2的1.4.1版本。
2、编译
终端:mpicc mpi_hello.c -g -Wall -o mpi_hello
3、运行
终端:mpiexec -n <number of processes> ./mpi_hello
例:用4个进程运行程序
mpiexec -n 4 ./mpi_hello
1、环境搭建
终端:sudo apt-get install mpich2
安装的是mpich2的1.4.1版本。
2、编译
终端:mpicc mpi_hello.c -g -Wall -o mpi_hello
3、运行
终端:mpiexec -n <number of processes> ./mpi_hello
例:用4个进程运行程序
mpiexec -n 4 ./mpi_hello