Skip to content
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

Merged
merged 1 commit into from
Mar 25, 2025
Merged

Conversation

SeanBryan51
Copy link
Collaborator

@SeanBryan51 SeanBryan51 commented Mar 13, 2025

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.

  • Bug fix

Checklist

  • The new content is accessible and located in the appropriate section
  • I have checked that links are valid and point to the intended content
  • I have checked my code/text and corrected any misspellings

Testing

  • Are the changes bitwise-compatible with the main branch? If working on an optional feature, are the results bitwise-compatible when this feature is off? If yes, copy benchcab output showing successful completion of the bitwise compatibility tests or equivalent results below this line.
2025-03-25 11:11:26,592 - INFO - benchcab.benchcab.py:380 - Running comparison tasks...
2025-03-25 11:11:26,627 - INFO - benchcab.benchcab.py:381 - tasks: 168 (models: 2, sites: 42, science configurations: 4)
2025-03-25 11:14:17,701 - INFO - benchcab.benchcab.py:391 - 0 failed, 168 passed

📚 Documentation preview 📚: https://cable--568.org.readthedocs.build/en/568/

@SeanBryan51 SeanBryan51 force-pushed the initialise-trunk-sumbal branch 2 times, most recently from 42dd5f3 to 80ef451 Compare March 13, 2025 04:42
@SeanBryan51 SeanBryan51 added the bug Something isn't working label Mar 13, 2025
@SeanBryan51 SeanBryan51 marked this pull request as ready for review March 13, 2025 05:34
@SeanBryan51 SeanBryan51 requested review from a team and Whyborn and removed request for a team March 13, 2025 05:34
Copy link

@Whyborn Whyborn left a 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

@SeanBryan51 SeanBryan51 force-pushed the initialise-trunk-sumbal branch 3 times, most recently from e528eff to d686f39 Compare March 14, 2025 01:55
@SeanBryan51 SeanBryan51 changed the title Initialise trunk_sumbal to default value Avoid using uninitialised trunk_sumbal Mar 14, 2025
@SeanBryan51
Copy link
Collaborator Author

SeanBryan51 commented Mar 14, 2025

@Whyborn I've decided to go with a different approach: instead of always initialising trunk_sumbal to -1.0, I've promoted trunk_sumbal to be allocatable to avoid using the variable when it is has not been allocated. This was because I realised the claim I made that "the default value of -1.0 for trunk_sumbal is chosen so that the tolerance (ABS(new_sumbal - trunk_sumbal)) is always greater than or equal to 1.0" is incorrect because new_sumbal could potentially be negative depending on the energy and water balance. I figured this was a better way to avoid this issue.

@Whyborn
Copy link

Whyborn commented Mar 14, 2025

And so the code will throw an error if the value is used before being allocated? I've never tried to use ALLOCATABLE with scalars- I'm guessing it autoallocates when you try to assign it a value?

@SeanBryan51
Copy link
Collaborator Author

And so the code will throw an error if the value is used before being allocated?

Not necessarily, that would depend on the compiler flags and any runtime memory checks that are enabled.

I just tried removing the ALLOCATED condition before computing the tolerance and the code did not error.

I'm guessing it autoallocates when you try to assign it a value?

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

@Whyborn
Copy link

Whyborn commented Mar 14, 2025

Explicit ALLOCATE statements aren't always required for ALLOCATABLE variables; allocation can happen implicitly when assigning a value to the variable e.g.

REAL, DIMENSION(:), ALLOCATABLE :: arr
REAL, ALLOCATABLE :: scal

arr = [1.0, 2.0, 3.0]
scal = 4.0

appears to be perfectly valid F90 code.

@SeanBryan51
Copy link
Collaborator Author

SeanBryan51 commented Mar 16, 2025

Explicit ALLOCATE statements aren't always required for ALLOCATABLE variables

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 trunk_sumbal shouldn't be read in at initialisation in cable_driver_init, it should be read in only when we calculate the tolerance. The reason why it was done this way was due to the original structure of the drivers. A much simpler way would be to wrap the initialisation of trunk_sumbal and the tolerance calculation in a subroutine and call that on the last time step.

@SeanBryan51 SeanBryan51 force-pushed the initialise-trunk-sumbal branch 4 times, most recently from 4999423 to df6f27c Compare March 17, 2025 02:17
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.
@SeanBryan51 SeanBryan51 force-pushed the initialise-trunk-sumbal branch from df6f27c to 74985b6 Compare March 18, 2025 03:21
@Whyborn
Copy link

Whyborn commented Mar 19, 2025

Yea, it seems a bit cumbersome to carry this variable around everywhere, rather than just getting it when we need it.

@SeanBryan51
Copy link
Collaborator Author

SeanBryan51 commented Mar 24, 2025

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.

@SeanBryan51 SeanBryan51 merged commit 4799d35 into main Mar 25, 2025
9 of 11 checks passed
@SeanBryan51 SeanBryan51 deleted the initialise-trunk-sumbal branch March 25, 2025 00:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants