Skip to content

Latest commit

 

History

28 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MPGMRESSh.jl

This julia package provides a proof-of-concept implementation of the multi-preconditioned GMRES iterative solution method for shifted systems of linear problems (see Bakhos T. et al., Multipreconditioned GMRES for Shifted Systems).

As of now, it is still in an early experimental stage.

Remarks

Note that some Krylov-based preconditioning solves are currently not compatible with certain preconditioning techniques provided by ExtendableSparse.jl and IncompleteLU.jl.

Specifically, an in-place ldiv! routine is missing in jacobi.jl of ExtendableSparse.jl which is required by both the GMRES and BiCGStabl solvers as provided by IterativeSolvers.jl.

Additionally, IncompleteLU lacks support for complex matrices which can be fixed by changing

function append_col!(A::SparseMatrixCSC{Tv}, y::SparseVectorAccumulator{Tv}, j::Int, drop::Tv, scale::Tv = one(Tv)) where {Tv}

in sparse_vector_accumulator.jl to

function append_col!(A::SparseMatrixCSC{Tv}, y::SparseVectorAccumulator{Tv}, j::Int, drop::Td, scale::Tv = one(Tv)) where {Tv,Td}

About

Implementation of a Krylov-subspace-like solver for systems of shifted linear problems.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages