-
Notifications
You must be signed in to change notification settings - Fork 93
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
Fix inconsistent behavior of scalar Jacobi between reference and the others #1642
Conversation
@yhmtsai the second commit seems to be missing |
@upsj Yes and sorry. I would like to wait for that some jobs of the first commit fail first |
5176f5b
to
7cf1b31
Compare
Co-authored-by: Marcel Koch <marcel.koch@kit.edu>
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #1642 +/- ##
========================================
Coverage 91.60% 91.60%
========================================
Files 761 761
Lines 61181 61199 +18
========================================
+ Hits 56045 56064 +19
+ Misses 5136 5135 -1 ☔ View full report in Codecov by Sentry. |
This PR fixes inconsistent behavior of scalar Jacobi between reference and the others Related PR: ginkgo-project#1642
We have the workaround for zero diagonal value in scalar Jacobi, but reference uses 1 but the others uses zero.
I currently make it be 1.
Note. it is not the proper inverse Jacobi matrix.
first commit adds the test and the second one fixes the issue.