我想问如何正确安装一个全面的LAPACK包,例如,Gentoo包‘sci/clapack’在Ubuntu环境中提供。
我不是在这里讨论地图集,它只提供了一小部分翻版功能,而是一种更通用的解决方案,为诸如'dstegr‘这样的特征值问题提供功能。
以下是我迄今为止所取得的成就:我最喜欢的搜索命令
apt-file search clapack.h只提供了两个可能的来源。
libatlas-dev: /usr/include/atlas/clapack.h
libfreefem++-dev: /usr/include/freefem++/clapack.h如前所述,地图集的版本并不是我想要的。另一方面,libfreefem的变化读起来很好。所以
apt-get install libfreefem++-dev此外
apt-cache search lapack提供了很多,最有前途的线条是
liblapack-dev - library of linear algebra routines 3 - static version
liblapack3gf - library of linear algebra routines 3 - shared version我安装的第一个软件包。现在加
#include <freefem++/clapack.h>在我的程序中返回一个可以理解的样式错误列表。
‘整型’,‘实’,‘双脑’,未在此范围内声明。
事实上,他们并没有。无论如何,我不是在寻找免费的或者地图集,只是一个运行中的,可用的LAPACK实现,Ubuntu真的没有这样的东西吗?
重读我自己的帖子,我相信这个问题也可以归结为“我在哪里可以获得‘liblapack-dev’的全面的头文件?”
发布于 2014-02-10 15:49:05
找到了一个对我有用的解决方案。对于那些稍后可能会读到这篇文章的人来说,还有一个类似的问题:我去了LAPACK主页,下载了最新版本的LAPACK作为tar gz,解压缩了它,并遵循了在同一站点的安装指南上发布的说明。我遇到了麻烦:在Makefile中,我不得不减少排队
all: lapack_install lib blas_testing lapack_testing至
all: lapack_install lib在那之后
make给了我。/liblapack.a和/libtmglib.a。
这么多福特伦。但是,我想要一些东西来插入到C程序中。这意味着我也要LAPACKE。
它可以在山下找到./lapacke/.有一个我忽略的CMakeLists.txt,直接调用已经存在的Makefile (它很短,而且易于阅读,并且使用您在遵循上面提到的安装指南时创建的make.inc文件)。这里唯一的缺点是缺乏拉帕克_mangling.h,我不得不将其复制到./lapacke/include/中。
这完成了从目录中调用"make“的过程。/lapacke/ ran没有遇到创建./plapacke.a和我准备编写一个小演示程序的问题:
/**
* svd_demo.cpp
*
* Given that you put version 3.5.0 into /opt/lapack/ compile this with:
* g++ svd_demo.cpp -I"/opt/lapack/lapack-3.5.0/lapacke/include" \
* -L"/opt/lapack/lapack-3.5.0" -llapacke -llapack -lblas -lcblas
* The order of included libraries is important!
*/
#include <iostream>
#include <string>
#include <sstream>
#include <cstdlib>
#include <cblas.h>
#include <lapacke.h>
using namespace std;
typedef double value;
/** Column major style! */
string matrix2string(int m, int n, value* A)
{
ostringstream oss;
for (int j=0;j<m;j++)
{
for (int k=0;k<n;k++)
{
oss << A[j+k*m] << "\t";
}
oss << endl;
}
return oss.str();
}
int main(int argc, char** argv)
{
//> Part 1. Decomposition. -----------------------------------------
char jobu = 'A'; // Return the complete matrix U
char jobvt = 'A'; // Return the complete matrix VT
int mA = 2;
int nA = 3;
int lda = 2;
int ldu = 2;
int ldvt = 3;
int lwork = 81;
int info = 0;
value* A = (value*)malloc(mA*nA*sizeof(value));
value* U = (value*)malloc(mA*mA*sizeof(value));
value* VT = (value*)malloc(nA*nA*sizeof(value));
value* Svec = (value*)malloc(3*sizeof(value));
value* work = (value*)malloc(lwork*sizeof(value));
A[0] = 1; A[2] = 2; A[4] = 4;
A[1] = 0; A[3] = 0; A[5] = 4;
cout << "Matrix A (will be overwritten, as is documented):" << endl <<
matrix2string(mA,nA,A);
// Citing lapacke.h
//lapack_int LAPACKE_dgesvd(int matrix_order, char jobu, char jobvt,
// lapack_int m, lapack_int n, double* a,
// lapack_int lda, double* s, double* u, lapack_int ldu,
// double* vt, lapack_int ldvt, double* superb);
info = LAPACKE_dgesvd(LAPACK_COL_MAJOR, jobu, jobvt, mA, nA, A, lda, Svec, U, ldu, VT, ldvt, work);
cout << "Ran dgesvd. Let's see ..." << endl <<
"U:" << endl << matrix2string(mA,mA,U) <<
"Svec:" << endl << matrix2string(1,nA,Svec) <<
"VT:" << endl << matrix2string(nA,nA,VT) <<
"Info Code: " << info << endl << endl <<
"All is well." << endl;
//< ----------------------------------------------------------------
//> Part 2. Checking the result. -----------------------------------
value* S = (value*)malloc(mA*nA*sizeof(value));
S[0] = Svec[0]; S[2] = 0 ; S[4] = 0 ;
S[1] = 0 ; S[3] = Svec[1]; S[5] = 0 ;
// Citing cblas.h
// void cblas_dgemm(const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA,
// const enum CBLAS_TRANSPOSE TransB, const int M, const int N,
// const int K, const double alpha, const double *A,
// const int lda, const double *B, const int ldb,
// const double beta, double *C, const int ldc);
// work := S*VT; (2x3)=(2x3)*(3x3)
cblas_dgemm(CblasColMajor,CblasNoTrans,CblasNoTrans,mA,nA,nA,1,S,lda,VT,ldvt,0,work,lda) ;
cout << "Step 1: S*VT" << endl << matrix2string(2,3,work);
// A := U*work; (2x2)*(2x3)
cblas_dgemm(CblasColMajor,CblasNoTrans,CblasNoTrans,mA,nA,mA,1,U,ldu,work,lda,0,A,lda);
cout << "A := U*S*VT:" << endl << matrix2string(mA,nA,A) << endl;
//< ----------------------------------------------------------------
free(A); free(U); free(VT); free(Svec); free(work); free(S);
return EXIT_SUCCESS;
}在我的系统上产生的输出
1 2 4
0 0 4
Ran dgesvd. Let's see ...
U:
-0.759729 -0.65024
-0.65024 0.759729
Svec:
5.89017 1.51851 0
VT:
-0.128982 -0.257965 -0.957506
-0.42821 -0.856419 0.288414
-0.894427 0.447214 -7.48099e-18
Info Code: 0
All is well.
Step 1: S*VT
-0.759729 -1.51946 -5.63988
-0.65024 -1.30048 0.437958
A := U*S*VT:
1 2 4
-9.63558e-16 -4.86265e-17 4关于我安装的BLAS
libblas-dev - Basic Linear Algebra Subroutines 3, static library
libblas3gf - Basic Linear Algebra Reference implementations, shared library
libopenblas-dev - Optimized BLAS (linear algebra) library based on GotoBLAS2因此,在Lapack主Makefile中,我使用了
BLASLIB = /usr/lib/openblas-base/libopenblas.a发布于 2014-12-22 16:44:17
通过使用包管理器,我得到了相同的结果。我做了以下工作:
sudo apt-get install libblas-dev checkinstall
sudo apt-get install libblas-doc checkinstall
sudo apt-get install liblapacke-dev checkinstall
sudo apt-get install liblapack-doc checkinstall库进入/usr/lib,包含in /usr/include。
感谢赫尔曼在上一篇文章中给出的示例代码。它帮助我很快地把它测试出来。使用默认安装目录,我使用了以下命令:
g++ svd_demo.cpp -I"/usr/include" -L"/usr/lib" -llapacke -lblashttps://askubuntu.com/questions/417726
复制相似问题