MGMRES:Restarted GMRES solver for sparse linear systems

33 篇文章 1 订阅
MGMRES
Restarted GMRES solver for sparse linear systems    

MGMRES       is a C++ library which       applies a simple restarted GMRES iteration      to a sparse linear system stored in a simple format,      by Lili Ju.    

      One matrix format used is the ST or "sparse triplet" format,      which setsNZ_NUM to the number of      nonzeros, and stores the K-th nonzero matrix entry as:      

  • A(K), the value of the entry;        
  • IA(K), the row of the entry;        
  • JA(K), the column of the entry;        

      Another matrix format used is the CR or       "sparse compressed row" format, which is similar to the sparse      triplet format except that it the vector of row indices is      compressed to a vector of length N+1 which points to the beginning      of the set of entries for each row.      

  • A(1:NZ_NUM), the value of the entry;        
  • IA(1:N+1), row I values occur in entries IA(I) to IA(I+1)-1;        
  • JA(1:NZ_NUM), the column of the entry;        

      Licensing:    

      The computer code and data files described and made available on this web page       are distributed under      the GNU LGPL license.    

      Languages:    

MGMRES is available in        a C version and       a C++ version and       a FORTRAN77 version and       a FORTRAN90 version and       a MATLAB version.    

      Related Data and Programs:    

      CG_RC,      a C++ library which      implements the conjugate gradient method for solving       a positive definite sparse linear system A*x=b, using reverse communication.    

      CSPARSE,      a C library which      implements iterative methods for solving linear systems.    

      DSP,      a data directory which       contains a description and examples of the DSP format for storing sparse matrices,      which is used by the FORTRAN90 version of MGMRES.    

      FEM2D_POISSON_SPARSE,      a C++ program which      solves the steady Poisson equation on a 2D triangulated region.  The program uses a copy of       MGMRES to solve the linear system.    

      HBSMC,      a dataset directory which      contains a collection of large sparse matrices stored in the      Harwell-Boeing format.    

      LINPACK,      a FORTRAN90 library      which carries out direct methods for solving linear systems.    

      MM,      a data directory which       contains a description and examples of the Matrix Market format       for storing matrices.    

      SPARSE_CC,      a data directory which      contains a description and examples of the CC format,      ("compressed column") for storing a sparse matrix,      including a way to write the matrix as a set of three files.    

      SPARSE_CR,      a data directory which      contains a description and examples of the CR format,      ("compressed row") for storing a sparse matrix,      including a way to write the matrix as a set of three files.    

      ST,      a data directory which       contains a description and examples of the ST format for storing sparse matrices,      which used by the C and C++ versions of MGMRES.    

      SUPER_LU,      a C program which       applies a fast direct solution method to a sparse linear system.    

      TEST_MAT,      a C++ library which       defines test matrices.    

      Author:    

      Original C version by Lili Ju, Mathematics Department, University of South Carolina;      C++ version by John Burkardt.    

Reference:    

  1.           Richard Barrett, Michael Berry, Tony Chan, James Demmel,          June Donato, Jack Dongarra, Victor Eijkhout, Roidan Pozo,          Charles Romine, Henk van der Vorst,
              Templates for the Solution of Linear Systems:
              Building Blocks for Iterative Methods,
              SIAM, 1994,
              ISBN: 0898714710,
              LC: QA297.8.T45.        
  2.           Tim Kelley,
              Iterative Methods for Linear and Nonlinear Equations,
              SIAM, 2004,
              ISBN: 0898713528,
              LC: QA297.8.K45.        
  3.           Yousef Saad,
              Iterative Methods for Sparse Linear Systems,
              Second Edition,
              SIAM, 20003,
              ISBN: 0898715342,
              LC: QA188.S17.        

      Source Code:    

  • mgmres.cpp, the source code.        
  • mgmres.hpp, the include file.        
  • mgmres.sh,          commands to compile the source code.        

      Examples and Tests:    

  • mgmres_prb.cpp,          a sample calling program.        
  • mgmres_prb.sh,          commands to compile and run the sample program.        
  • mgmres_prb_output.txt,          the output file.        

      List of Routines:    

  • ATX_CR computes A'*x for a matrix stored in sparse compressed row form.        
  • ATX_ST computes A'*x for a matrix stored in sparse triplet form.        
  • AX_CR computes A*x for a matrix stored in sparse compressed row form.        
  • AX_ST computes A*x for a matrix stored in sparse triplet form.        
  • DIAGONAL_POINTER_CR finds diagonal entries in a sparse compressed row matrix.        
  • ILU_CR computes the incomplete LU factorization of a matrix.        
  • LUS_CR applies the incomplete LU preconditioner.        
  • MGMRES_ST applies restarted GMRES to a matrix in sparse triplet form.        
  • MULT_GIVENS applies a Givens rotation to two successive entries of a vector.        
  • PMGMRES_ILU_CR applies the preconditioned restarted GMRES algorithm.        
  • R8VEC_DOT computes the dot product of a pair of R8VEC's.        
  • R8VEC_UNIFORM_01 returns a unit pseudorandom R8VEC.        
  • REARRANGE_CR sorts a sparse compressed row matrix.        
  • TIMESTAMP prints the current YMDHMS date as a time stamp.        

      You can go up one level to       the C++ source codes.

 

 

http://people.sc.fsu.edu/~jburkardt/cpp_src/mgmres/mgmres.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值