由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - Fast solver of linear equation system
相关主题
稀疏矩阵压缩lapack如何求解XA=B
直接用NR的源程序需要注意什么吗?Gfortran library
请教一个计算速度的问题C++里用Blas/Lapack的问题
求矩阵逆的算法我们碰到的大麻烦——急寻计算机工作和博后机会 (转载)
有没有用Lapack的?求助:DGBTRS
mklman is by far the most grandious reference manual i've seen如何快速求一个5000*5000的对称矩阵的逆
[合集] 这里有lapack用的比较熟悉的人吗?LAPACK++ Re: 求解PDE时,用到大型的矩阵,C++里怎么处理?
do you use blas/lapack?about Gaussian elimination zz
相关话题的讨论汇总
话题: fast话题: solver话题: linear话题: equation话题: system
进入Computation版参与讨论
1 (共1页)
t****n
发帖数: 39
1
Any one has experience of solving a linear equation system with
block tridiagonal matrix? I really need a fast solver. Currently
I'm using Gauss elimination method.
c*******e
发帖数: 8624
2
if spd, cg ;
otherwise, gmres.
I heard there is a new method found recently good for general linear systems
which is better than gmres, no idea about details.

【在 t****n 的大作中提到】
: Any one has experience of solving a linear equation system with
: block tridiagonal matrix? I really need a fast solver. Currently
: I'm using Gauss elimination method.

b*****y
发帖数: 163
3
For direct methods, platform optimized BLAS and LAPACK are
very fast.

【在 t****n 的大作中提到】
: Any one has experience of solving a linear equation system with
: block tridiagonal matrix? I really need a fast solver. Currently
: I'm using Gauss elimination method.

t****n
发帖数: 39
4
Well, I wrote a code myself, with a house-cooked matrix manipulation
subroutine. Recently I tried the Intel Math Kernel's BLAS and LAPACK
souboutine. Unfortunately, no gain.

【在 b*****y 的大作中提到】
: For direct methods, platform optimized BLAS and LAPACK are
: very fast.

t******t
发帖数: 13
5
If the dimension is really really big, you might try
some sparse solver. I use the SparsKit here:
http://www-users.cs.umn.edu/~saad/
in my research and it suits my needs.

【在 t****n 的大作中提到】
: Any one has experience of solving a linear equation system with
: block tridiagonal matrix? I really need a fast solver. Currently
: I'm using Gauss elimination method.

1 (共1页)
进入Computation版参与讨论
相关主题
about Gaussian elimination zz有没有用Lapack的?
CG versus BFGS for iterative linear solversmklman is by far the most grandious reference manual i've seen
MINOS linear programming (转载)[合集] 这里有lapack用的比较熟悉的人吗?
calculation of inverse of "almost-singular" matrixdo you use blas/lapack?
稀疏矩阵压缩lapack如何求解XA=B
直接用NR的源程序需要注意什么吗?Gfortran library
请教一个计算速度的问题C++里用Blas/Lapack的问题
求矩阵逆的算法我们碰到的大麻烦——急寻计算机工作和博后机会 (转载)
相关话题的讨论汇总
话题: fast话题: solver话题: linear话题: equation话题: system