File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ factorization methods if a lower tolerance of the solution is required.
85
85
Krylov.jl generally outperforms IterativeSolvers.jl and KrylovKit.jl, and is compatible
86
86
with CPUs and GPUs, and thus is the generally preferred form for Krylov methods. The
87
87
choice of Krylov method should be the one most constrained to the type of operator one
88
- has, for example if positive definite then ` Krylov_CG ()` , but if no good properties then
89
- use ` Krylov_GMRES ()` .
88
+ has, for example if positive definite then ` KrylovJL_CG ()` , but if no good properties then
89
+ use ` KrylovJL_GMRES ()` .
90
90
91
91
Finally, a user can pass a custom function for handling the linear solve using
92
92
` LS.LinearSolveFunction() ` if existing solvers are not optimally suited for their application.
@@ -99,8 +99,8 @@ then using a Krylov method is preferred in order to not concretize the matrix.
99
99
Krylov.jl generally outperforms IterativeSolvers.jl and KrylovKit.jl, and is compatible
100
100
with CPUs and GPUs, and thus is the generally preferred form for Krylov methods. The
101
101
choice of Krylov method should be the one most constrained to the type of operator one
102
- has, for example if positive definite then ` Krylov_CG ()` , but if no good properties then
103
- use ` Krylov_GMRES ()` .
102
+ has, for example if positive definite then ` KrylovJL_CG ()` , but if no good properties then
103
+ use ` KrylovJL_GMRES ()` .
104
104
105
105
!!! tip
106
106
You can’t perform that action at this time.
0 commit comments