-
Notifications
You must be signed in to change notification settings - Fork 122
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
Cleanup: simplify standard well equations #6063
base: master
Are you sure you want to change the base?
Cleanup: simplify standard well equations #6063
Conversation
jenkins build this please |
benchmark please |
Benchmark result overview:
View result details @ https://www.ytelses.com/opm/?page=result&id=2712 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks correct to me.
However, I think it is not executed at all in the normal case, since the line
prm.put("preconditioner.use_well_weights", "false"s);
in setupPropertyTree.cpp means we use the other branch, unless you pass a custom JSON definition for the linear solver.
Therefore it would be prudent to do some testing with a custom definition setting this parameter to true, before merging.
Whether this is called is subject to the |
I take back my statement above, That is the condition that the function is called, but here is another if around this particular statement, indeed. |
I just stumbled upon this while studying cprw solver. The code can be simplified in two ways:
rhs
has exactly one nonzero element equal to 1. Thefor
loop accumulating elements multiplied byrhs
can be thus simplified to an assignment.inv_diag_block
matrix does not have to be constructed. We access its elements, so swapping indices suffices.