資源描述:
《MPI安裝與運行報告.doc》由會員上傳分享,免費在線閱讀,更多相關內容在教育資源-天天文庫。
1、Ubuntu系統(tǒng)下mpich2的安裝。把老師給的“mpich2-1.3.2p1.tar.gz”解壓到我的用戶目錄下。一、首先進入解壓后mpich2文件的根目錄,運行配置操作:./configure--prefix=/home//mpich2-install
2、&teeinfo.txt,結果報錯如下:"NoFortran77compilerfound.Ifyoudon'tneedtobuildanyFortranprograms,youcandisableFortransupportusing--disabl
3、e-f77and--disable-fc.IfyoudowanttobuildFortranprograms,youneedtoinstallaFortrancompilersuchasgfortranorifortbeforeyoucanproceed."于是按照提示修改命令,改為./configure--prefix=/home/east/mpich2-install--disable-f77--disable-fc
4、&teeinfo.txt,結果又提示沒有找到C++編譯器:“configure:error:Aborti
5、ngbecauseC++compilerdoesnotwork.IfyoudonotneedaC++compiler,configurewith–disable-cxx”考慮到以后應該會用到g++,于是根據(jù)提示用“sudoapt-getinstallg++”命令進行了安裝。然后再次運行配置命令,終于成功完成。二、運行make命令”make
6、&teeinfo.txt”,經過了漫長的等待,看到提示”Makecompleted”的時候,終于松了一口氣。三、安裝MPICH2,運行”makeinstall
7、&teeinfo.txt”命
8、令。很快,就“Makecompleted”了。四、將安裝后MPICH2的bin目錄“mpich2-install”添加到系統(tǒng)路徑中,即添加到啟動腳本中,運行命令“PATH=/home/east/mpich2-install/bin:$PATH;exportPATH”,或者直接修改系統(tǒng)配置文件/etc/profile,然后重啟系統(tǒng)以使配置文件生效。然后運行whichmpiexec,系統(tǒng)回顯出mpiexec的路徑,證明bin目錄已經成功添加到系統(tǒng)路徑中。圖8為了節(jié)省時間,并確保程序的正確性,我就直接運行MPICH2安裝文件中,e
9、xample目錄下自帶的例子程序cpi了,這個程序是用來計算圓周率的。用mpicc進行編譯,mpiexec來運行程序。具體命令及運行結果如上面圖8所示。