-
Notifications
You must be signed in to change notification settings - Fork 7
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
Avoid using uninitialised trunk_sumbal #568
Conversation
42dd5f3
to
80ef451
Compare
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.
We should probably drop all these DOUBLE PRECISION
occurrences at some point
e528eff
to
d686f39
Compare
trunk_sumbal
to default value
@Whyborn I've decided to go with a different approach: instead of always initialising |
And so the code will throw an error if the value is used before being allocated? I've never tried to use |
Not necessarily, that would depend on the compiler flags and any runtime memory checks that are enabled. I just tried removing the
Allocatable scalars still need to be allocated. The only difference is an array shape specification is not needed when allocating scalars: https://www.intel.com/content/www/us/en/docs/fortran-compiler/developer-guide-reference/2025-0/allocate-statement.html |
Explicit
appears to be perfectly valid F90 code. |
I did not know implicit allocation on assignment existed in Fortran. Good to know! After letting this PR simmer in my brain a bit, I think the use of an allocatable scalar in this situation might be overkill: in the broader picture, the value of |
4999423
to
df6f27c
Compare
The trunk_sumbal value is still used in the offline driver when a consistency check file cannot be find. To avoid using a garbage value and potentially causing an exception, this change moves the tolerance calculation and the trunk_sumbal initialisation into a single subroutine so that trunk_sumbal is used only when it is successfully read from the the consistency check file.
df6f27c
to
74985b6
Compare
Yea, it seems a bit cumbersome to carry this variable around everywhere, rather than just getting it when we need it. |
Looks like I forgot to rerun benchcab. Once I get the okay from benchcab I will merge this in. Note: the build-ci for CABLE is currently broken (see #575) so I will ignore this action for now. |
The trunk_sumbal value is still used in the offline driver when a consistency check file cannot be find. To avoid using a garbage value and potentially causing an exception, this change moves the tolerance calculation and the trunk_sumbal initialisation into a single subroutine so that trunk_sumbal is used only when it is successfully read from the the consistency check file.
Type of change
Please delete options that are not relevant.
Checklist
Testing
📚 Documentation preview 📚: https://cable--568.org.readthedocs.build/en/568/