| 24小時(shí)熱門版塊排行榜 |
| 5 | 1/1 | 返回列表 |
| 查看: 1644 | 回復(fù): 3 | |||
| 當(dāng)前只顯示滿足指定條件的回帖,點(diǎn)擊這里查看本話題的所有回帖 | |||
1357246鐵桿木蟲(chóng) (職業(yè)作家)
壯士
|
[交流]
【求助】linux下lapack庫(kù)編譯測(cè)試錯(cuò)誤 已有3人參與
|
||
|
這是我的驗(yàn)證錯(cuò)誤提示 make[2]: Leaving directory `/home/dengk001/lapack/LAPACK/TIMING/LIN' Timing square REAL LAPACK linear equation routines xlintims < stime.in > stime.out 2>&1 make[1]: *** [stime.out] 錯(cuò)誤 127 make[1]: Leaving directory `/home/dengk001/lapack/LAPACK/TIMING' make: *** [timing] 錯(cuò)誤 2 ----------------------------------------------------------------------------- 下面是make.inc文件信息 #################################################################### # LAPACK make include file. # # LAPACK, Version 3.0 # # June 30, 1999 # #################################################################### # SHELL = /bin/sh # # The machine (platform) identifier to append to the library names # PLAT = _LINUX # # Modify the FORTRAN and OPTS definitions to refer to the # compiler and desired compiler options for your machine. NOOPT # refers to the compiler options desired when NO OPTIMIZATION is # selected. Define LOADER and LOADOPTS to refer to the loader and # desired load options for your machine. # FORTRAN = ifort #OPTS = -O4 -u -f -mt #OPTS = -u -f -dalign -native -xO5 -xarch=v8plusa #OPTS = -u -f -dalign -native -xO5 -xarch=v8plusa OPTS = -O3 DRVOPTS = $(OPTS) #NOOPT = -u -f NOOPT =-O0 #NOOPT = -u -f -mt LOADER = ifort #LOADOPTS = -mt LOADPTS = #LOADOPTS = -f -dalign -native -xO5 -xarch=v8plusa # # The archiver and the flag(s) to use when building archive (library) # If you system has no ranlib, set RANLIB = echo. # ARCH = ar ARCHFLAGS= cr RANLIB = ranlib # # The location of the libraries to which you will link. (The # machine-specific, optimized BLAS library should be used whenever # possible.) # BLASLIB = ../../blas$(PLAT).a #BLASLIB = -xlic_lib=sunperf_mt #BLASLIB = -xlic_lib=sunperf LAPACKLIB = lapack$(PLAT).a TMGLIB = tmglib$(PLAT).a EIGSRCLIB = eigsrc$(PLAT).a LINSRCLIB = linsrc$(PLAT).a ---------------------------------------------------------------------------- 下面是我的Makefile文件信息 # # Top Level Makefile for LAPACK # Version 3.0 # June 30, 1999 # include make.inc all: install lib testing blas_testing timing blas_timing #lib: lapacklib tmglib lib: blaslib lapacklib tmglib clean: cleanlib cleantesting cleantiming install: ( cd INSTALL; $(MAKE); ./testlsame; ./testslamch; \ ./testdlamch; ./testsecond; ./testdsecnd; \ cp lsame.f ../BLAS/SRC/; cp lsame.f ../SRC; \ cp slamch.f ../SRC/; cp dlamch.f ../SRC/; \ cp second.f ../SRC/; cp dsecnd.f ../SRC/ ) blaslib: ( cd BLAS/SRC; $(MAKE) ) lapacklib: ( cd SRC; $(MAKE) ) tmglib: ( cd TESTING/MATGEN; $(MAKE) ) testing: ( cd TESTING ; $(MAKE) ) blas_testing: ( cd BLAS/TESTING; $(MAKE) -f Makeblat1 ) ( cd BLAS; ./xblat1s > sblat1.out; \ ./xblat1d > dblat1.out; \ ./xblat1c > cblat1.out; \ ./xblat1z > zblat1.out ) ( cd BLAS/TESTING; $(MAKE) -f Makeblat2 ) ( cd BLAS; ./xblat2s < sblat2.in ; \ ./xblat2d < dblat2.in ; \ ./xblat2c < cblat2.in ; \ ./xblat2z < zblat2.in ) ( cd BLAS/TESTING; $(MAKE) -f Makeblat3 ) ( cd BLAS; ./xblat3s < sblat3.in ; \ ./xblat3d < dblat3.in ; \ ./xblat3c < cblat3.in ; \ ./xblat3z < zblat3.in ) timing: ( cd TIMING; $(MAKE) ) blas_timing: ( cd TIMING/LIN; $(MAKE) ) ( cd TIMING; ./xlintims < sblasa.in > sblasa.out ; \ ./xlintims < sblasb.in > sblasb.out ; \ ./xlintims < sblasc.in > sblasc.out ) ( cd TIMING; ./xlintimd < dblasa.in > dblasa.out ; \ ./xlintimd < dblasb.in > dblasb.out ; \ ./xlintimd < dblasc.in > dblasc.out ) ( cd TIMING; ./xlintimc < cblasa.in > cblasa.out ; \ ./xlintimc < cblasb.in > cblasb.out ; \ ./xlintimc < cblasc.in > cblasc.out ) ( cd TIMING; ./xlintimz < zblasa.in > zblasa.out ; \ ./xlintimz < zblasb.in > zblasb.out ; \ ./xlintimz < zblasc.in > zblasc.out ) cleanlib: ( cd INSTALL; $(MAKE) clean ) ( cd BLAS/SRC; $(MAKE) clean ) ( cd SRC; $(MAKE) clean ) ( cd TESTING/MATGEN; $(MAKE) clean ) cleantesting: ( cd TESTING/LIN; $(MAKE) clean ) ( cd TESTING/EIG; $(MAKE) clean ) ( cd TESTING; rm xlin* xeig* ) cleantiming: ( cd TIMING/LIN; $(MAKE) clean ) ( cd TIMING/LIN/LINSRC; $(MAKE) clean ) ( cd TIMING/EIG; $(MAKE) clean ) ( cd TIMING/EIG/EIGSRC; $(MAKE) clean ) ( cd TIMING; rm xlin* xeig* ) ------------------------------------------------------------------ 我的主機(jī)信息: Intel(R) Xeon(R) CPU E5410 @ 2.33GHz stepping 0a 兩個(gè)四核的CPU Red Hat Enterprise Linux Server release 5.2 (Tikanga) Linux node18 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:15 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux ------------------------------------------------------------------------------ 盼高手解答一下。!不知道我給的信息夠不夠詳細(xì)! 感謝再感謝 [ Last edited by 1357246 on 2010-6-11 at 21:28 ] |


至尊木蟲(chóng) (職業(yè)作家)
| 最具人氣熱帖推薦 [查看全部] | 作者 | 回/看 | 最后發(fā)表 | |
|---|---|---|---|---|
|
[考研] 復(fù)試調(diào)劑 +4 | z1z2z3879 2026-03-14 | 6/300 |
|
|---|---|---|---|---|
|
[考研] 321求調(diào)劑 +8 | 何潤(rùn)采123 2026-03-18 | 10/500 |
|
|
[考研] 324分 085600材料化工求調(diào)劑 +3 | llllkkkhh 2026-03-18 | 3/150 |
|
|
[考研] 材料考研調(diào)劑 +3 | xwt。 2026-03-19 | 3/150 |
|
|
[考研] 346求調(diào)劑[0856] +3 | WayneLim327 2026-03-16 | 6/300 |
|
|
[考研] 311求調(diào)劑 +6 | 26研0 2026-03-15 | 6/300 |
|
|
[考研] 070300化學(xué)319求調(diào)劑 +6 | 錦鯉0909 2026-03-17 | 6/300 |
|
|
[考研] 303求調(diào)劑 +4 | 睿08 2026-03-17 | 6/300 |
|
|
[考博] 26博士申請(qǐng) +3 | 1042136743 2026-03-17 | 3/150 |
|
|
[考研] 301求調(diào)劑 +4 | A_JiXing 2026-03-16 | 4/200 |
|
|
[考研] 308求調(diào)劑 +4 | 是Lupa啊 2026-03-16 | 4/200 |
|
|
[考研] 材料專碩326求調(diào)劑 +6 | 墨煜姒莘 2026-03-15 | 7/350 |
|
|
[考研] 一志愿蘇州大學(xué)材料工程(085601)專碩有科研經(jīng)歷三項(xiàng)國(guó)獎(jiǎng)兩個(gè)實(shí)用型專利一項(xiàng)省級(jí)立項(xiàng) +6 | 大火山小火山 2026-03-16 | 8/400 |
|
|
[考研] 一志愿南京大學(xué),080500材料科學(xué)與工程,調(diào)劑 +4 | Jy? 2026-03-16 | 4/200 |
|
|
[論文投稿] 有沒(méi)有大佬發(fā)小論文能帶我個(gè)二作 +3 | 增銳漏人 2026-03-17 | 4/200 |
|
|
[考研] 278求調(diào)劑 +3 | Yy7400 2026-03-13 | 3/150 |
|
|
[考研] 274求調(diào)劑 +5 | 時(shí)間點(diǎn) 2026-03-13 | 5/250 |
|
|
[考研] 070305求調(diào)劑 +3 | mlpqaz03 2026-03-14 | 4/200 |
|
|
[考研] 中科大材料與化工319求調(diào)劑 +3 | 孟鑫材料 2026-03-14 | 3/150 |
|
|
[考研] 290求調(diào)劑 +3 | ADT 2026-03-13 | 3/150 |
|