-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An implementation of FGMRES #636
Conversation
Codecov ReportBase: 97.99% // Head: 98.05% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #636 +/- ##
==========================================
+ Coverage 97.99% 98.05% +0.06%
==========================================
Files 36 37 +1
Lines 6120 6310 +190
==========================================
+ Hits 5997 6187 +190
Misses 123 123
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Example: A = rand(20, 20)
b = rand(20)
N = LinearOperator(Float64, 20, 20, false, false, (y, x) -> y .= rand(20)) # Random preconditioner
x, stats = fgmres(A, b, N=N)
norm(b - A * x)
1.2601303680448969e-10 |
@dpo Can you just check the docstring of |
Co-authored-by: Dominique <dominique.orban@gmail.com>
Co-authored-by: Dominique <dominique.orban@gmail.com>
Thanks for the review @dpo! |
No description provided.