由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - gnu c++ 自带的库能解矩阵方程吗?
相关主题
Matrix calculation in C++do you use blas/lapack?
为啥matlab一直用列优先存储来存储array?Linux下运行lapack和blas的问题
150行 F# 做矩阵运算比MKL还快How to use multi-core to speed Python program
openblas怎么比base blas还慢呢?请推荐好的c++下的matrix库
求推荐:fortran好用的debug软件lapack如何求解XA=B
经过两个月,矩阵库基本完成,c++11就是好C++ 做线性代数,方便使用的库?
求救:2个dense matrix的乘法C++里用Blas/Lapack的问题 (转载)
请问:稀疏矩阵运算有什么好的C++库?搞矩阵的竟然没有人提BLAS
相关话题的讨论汇总
话题: sparse话题: lu话题: 矩阵话题: blas
进入Programming版参与讨论
1 (共1页)
r*******y
发帖数: 1081
1
该用哪个库,谢谢
a*******h
发帖数: 123
2
不能。用  lapack。
S*********g
发帖数: 5298
3
试试gsl

【在 r*******y 的大作中提到】
: 该用哪个库,谢谢
y****e
发帖数: 23939
4
blas 和 lapak
n**f
发帖数: 121
5
How do you build Lapack?
I know binaries exist for many operating systems. But I am still curious how
you build it from source, since it might be safer. Do you go through the
f2c -> gcc or other compiler path?

【在 a*******h 的大作中提到】
: 不能。用  lapack。
n**f
发帖数: 121
6
I thought BLAS only comes with basic operations...and not necessarily good
ones for both dense and sparse.

【在 y****e 的大作中提到】
: blas 和 lapak
n**f
发帖数: 121
7
Depending on how big/sparse the matrice are, and how frequently you have to
solve this, you may want to try LU or SVD using numerical recipe.

【在 r*******y 的大作中提到】
: 该用哪个库,谢谢
p***o
发帖数: 1252
8
For LU, SuperLU is a good library.

to

【在 n**f 的大作中提到】
: Depending on how big/sparse the matrice are, and how frequently you have to
: solve this, you may want to try LU or SVD using numerical recipe.

n**f
发帖数: 121
9
How about its capability to handle singularity and near-singularity?

【在 p***o 的大作中提到】
: For LU, SuperLU is a good library.
:
: to

p***o
发帖数: 1252
10
Better check their documentation and publication.
My systems are quite nice.

【在 n**f 的大作中提到】
: How about its capability to handle singularity and near-singularity?
相关主题
经过两个月,矩阵库基本完成,c++11就是好do you use blas/lapack?
求救:2个dense matrix的乘法Linux下运行lapack和blas的问题
请问:稀疏矩阵运算有什么好的C++库?How to use multi-core to speed Python program
进入Programming版参与讨论
n**f
发帖数: 121
11
how big are your matrices?

【在 p***o 的大作中提到】
: Better check their documentation and publication.
: My systems are quite nice.

p***o
发帖数: 1252
12
<10K to a few M.

【在 n**f 的大作中提到】
: how big are your matrices?
S*********g
发帖数: 5298
13
试试这个gsl?
http://www.gnu.org/software/gsl/

【在 p***o 的大作中提到】
: <10K to a few M.
p***o
发帖数: 1252
14
I am talking about large sparse matrix.

【在 S*********g 的大作中提到】
: 试试这个gsl?
: http://www.gnu.org/software/gsl/

t*****n
发帖数: 4908
15
Eigen c++的矩阵库,效率还不错。跟MKL有的一比。纯头文件,即编即用。
t*****n
发帖数: 4908
16
UMFPACK + GOTOBLAS2
解稀疏矩阵最好了。

【在 p***o 的大作中提到】
: I am talking about large sparse matrix.
c***r
发帖数: 1570
17
eigen , or boost ublas
c***r
发帖数: 1570
18
for the large sparse matrix, try petsc
1 (共1页)
进入Programming版参与讨论
相关主题
搞矩阵的竟然没有人提BLAS求推荐:fortran好用的debug软件
nv的显卡能战胜intel的CPU么经过两个月,矩阵库基本完成,c++11就是好
有没有觉得scipy很稀烂的?求救:2个dense matrix的乘法
发现版上没有聊fortran的请问:稀疏矩阵运算有什么好的C++库?
Matrix calculation in C++do you use blas/lapack?
为啥matlab一直用列优先存储来存储array?Linux下运行lapack和blas的问题
150行 F# 做矩阵运算比MKL还快How to use multi-core to speed Python program
openblas怎么比base blas还慢呢?请推荐好的c++下的matrix库
相关话题的讨论汇总
话题: sparse话题: lu话题: 矩阵话题: blas