Linux 安装openmpi
安装
1) 下载openmpi
2) tar -xzvf openmpi-1.4.3.tar.gz
3) cd openmpi-1.4.3
4) ./configure --prefix=/usr/local/openmpi | tee ../install.log
5) make all | tee ../make.log
6) make install | tee ../install2.log
配置环境
7) vi /etc/ld.so.conf 最后增加一行
/usr/local/openmpi/lib
保存退出
8) /sbin/ldconfig 回车等待。
9) vi /etc/profile, 最后 增加一行:
PATH=${PATH}:/usr/local/openmpi/bin
保存退出
10)执行
. /etc/profile
测试
10)cd examples
11) make
12) mpirun -np 4 ./hello_f90 可以得到类似ppt中的输出
mpi多机时, 需要有machines文件。文件内容如下:
tp1 1 /home/pact/mpich/examples/basic/cpi
tp2 1 /home/pact/mpich/examples/basic/cpi
tp3 1 /home/pact/mpich/examples/basic/cpi
分别表示机器名/ip, 进程个数, 进程名(进程名可以没有); 当使用机器名时, 则需要架设DNS服务器。
mpirun -machinefile ./machine.linux -np 4 ./hello_f90
更多推荐
所有评论(0)