Introduction
Installing
Install KrylovKit.jl via the package manager:
using Pkg
Pkg.add("KrylovKit")
KrylovKit.jl is a pure Julia package; no dependencies (aside from the Julia standard library) are required.
Getting started
After installation, start by loading KrylovKit
using KrylovKit
The help entry of the KrylovKit
module states
KrylovKit
โ Module.KrylovKit
A Julia package collecting a number of Krylov-based algorithms for linear problems, singular value and eigenvalue problems and the application of functions of linear maps or operators to vectors.
KrylovKit accepts general functions or callable objects as linear maps, and general Julia objects with vector like behavior as vectors.
The high level interface of KrylovKit is provided by the following functions:
linsolve
: solve linear systemseigsolve
: find a few eigenvalues and corresponding eigenvectorsgeneigsolve
: find a few generalized eigenvalues and corresponding vectorssvdsolve
: find a few singular values and corresponding left and right singular vectorsexponentiate
: apply the exponential of a linear map to a vector
Common interface
The for high-level function linsolve
, eigsolve
, geneigsolve
, svdsolve
and exponentiate
follow a common interface
results..., info = problemsolver(A, args...; kwargs...)
where problemsolver
is one of the functions above. Here, A
is the linear map in the problem, which could be an instance of AbstractMatrix
, or any function or callable object that encodes the action of the linear map on a vector. In particular, one can write the linear map using Julia's do
block syntax as
results..., info = problemsolver(args...; kwargs...) do x
y = # implement linear map on x
return y
end
Read the documentation for problems that require both the linear map and its adjoint to be implemented, e.g. svdsolve
, or that require two different linear maps, e.g. geneigsolve
.
Furthermore, args
is a set of additional arguments to specify the problem. The keyword arguments kwargs
contain information about the linear map (issymmetric
, ishermitian
, isposdef
) and about the solution strategy (tol
, krylovdim
, maxiter
). Finally, there is a keyword argument verbosity
that determines how much information is printed to STDOUT
. The default value verbosity = 0
means that no information will be printed. With verbosity = 1
, a single message at the end of the algorithm will be displayed, which is a warning if the algorithm did not succeed in finding the solution, or some information if it did. For verbosity = 2
, information about the current state is displayed after every iteration of the algorithm. Finally, for verbosity > 2
, information about the individual Krylov expansion steps is displayed.
The return value contains one or more entries that define the solution, and a final entry info
of type ConvergeInfo
that encodes information about the solution, i.e. wether it has converged, the residual(s) and the norm thereof, the number of operations used:
KrylovKit.ConvergenceInfo
โ Type.struct ConvergenceInfo{S,T}
converged::Int
residual::T
normres::S
numiter::Int
numops::Int
end
Used to return information about the solution found by the iterative method.
converged
: the number of solutions that have converged according to an appropriate error measure and requested tolerance for the problem. Its value can be zero or one forlinsolve
andexponentiate
, or any integer>= 0
foreigsolve
,schursolve
orsvdsolve
.residual:
the (list of) residual(s) for the problem, ornothing
for problems without the concept of a residual (i.e.exponentiate
). This is a single vector (of the same type as the type of vectors used in the problem) forlinsolve
, or aVector
of such vectors foreigsolve
,schursolve
orsvdsolve
.normres
: the norm of the residual(s) (in the previous field) or the value of any other error measure that is appropriate for the problem. This is aReal
forlinsolve
andexponentiate
, and aVector{<:Real}
foreigsolve
,schursolve
andsvdsolve
. The number of values innormres
that are smaller than a predefined tolerance corresponds to the numberconverged
of solutions that have converged.numiter
: the number of iterations (sometimes called restarts) used by the algorithm.numops
: the number of times the linear map or operator was applied
There is also an expert interface where the user specifies the algorithm that should be used explicitly, i.e.
results..., info = problemsolver(A, args..., algorithm(;kwargs...))
Most algorithm
constructions take the same keyword arguments (tol
, krylovdim
, maxiter
and verbosity
) discussed above.