我工作的IntelliJ找到BLAS這個參數指定到我的JVM: -Dcom.github.fommil.netlib.BLAS=mkl_rt.dll (my mkl folder is in the Path)
不過我還是有以下警告: WARN BLAS: Failed to load implementation from: mkl_rt.dll
任何幫助?
我有一個問題,將lapack鏈接到Fortran示例程序。這裏是example.f95 Program LinearEquations
! solving the matrix equation A*x=b using LAPACK
Implicit none
! declarations
double precision :: A(3,3), b(3)
integer :: i, p