0

我正在尝试使用 Intel MKL 的 BLAS 和 LAPACK编译SuiteSparse 。但是,make 似乎找不到这些库。考虑到 makefile 使用的 BLAS 和 LAPACK 的 SuiteSparse_config.mk 文件部分如下所示:

# This is probably slow ... it might connect to the Standard Reference BLAS:
#BLAS = -lblas -lgfortran
#LAPACK = -llapack

# NOTE: this next option for the "Goto BLAS" has nothing to do with a "goto"
# statement.  Rather, the Goto BLAS is written by Dr. Kazushige Goto.
# Using the Goto BLAS:
# BLAS = -lgoto -lgfortran -lgfortranbegin
# BLAS = -lgoto2 -lgfortran -lgfortranbegin -lpthread

# Using non-optimized versions:
# BLAS = -lblas_plain -lgfortran -lgfortranbegin
# LAPACK = -llapack_plain

# BLAS = -lblas_plain -lgfortran -lgfortranbegin
# LAPACK = -llapack

我试图将英特尔的 libmkl_blas_95ilp64.a 和 libmkl_blas95_lp64.a 复制到稀疏套件文件夹中并设置

BLAS = -libmkl_blas_95ilp64
LAPACK = -libmkl_blas95_lp64

但后来它说它找不到这样的文件。我还尝试为这些库提供完整的路径,但随后它编译了除演示之外的所有内容,这些都有未解决的错误。如何设置这些库以使 SuiteSparse 工作?

4

1 回答 1

0
BLAS = -L/opt/intel/mkl/lib/intel64 -lmkl_rt

LAPACK = -L/opt/intel/mkl/lib/intel64 -lmkl_rt
于 2013-06-03T06:20:31.057 回答