欢迎来到天天文库
浏览记录
ID:8807398
大小:16.50 KB
页数:2页
时间:2018-04-08
《centos6.5的openmpi安装》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、一、1.先安装gcc,c++,gfortran >yuminstallgcc-gfortran >yuminstallgcc >yuminstallgcc-c++*aclocal2.测试以上三个是否安装成功: >whichgcc >whichgfortran >whichc++3.安装Openmpi二、1、下载openmpi-1.4.2,这个据说是比较稳定的版本。2、解压tar-zxvfopenmpi-1.4.2.tar.gz3、./configure--prefix=/usr/local/ope
2、nmpi-1.4.24、makeall5、makeinstall(需要root权限)6、在.bashrc中加入如下语句(需要在home文件下打开.bashrcgedit.bashrc)exportOPENMPI=/usr/local/openmpi-1.4.2exportLD_LIBRARY_PATH=$OPENMPI/libexportPATH=$OPENMPI/bin:$PATH7、source~/.bashrc8、进入example文件夹,make编译文件9、执行mpirun-np4hello_c输出结果为:Hello,w
3、orld,Iam0of4Hello,world,Iam2of4Hello,world,Iam1of4Hello,world,Iam3of410、安装成功,开始学mpi。。。。
此文档下载收益归作者所有