-
Notifications
You must be signed in to change notification settings - Fork 5
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 ITime issue with saveat #1208
Conversation
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.
This looks good! Could you also add the following lines to config/ci_configs/amip_coarse_ft32.yml
please? That way we'll exercise those options in our regular CI and we can catch issues like this before they get to the benchmarks.
dt_save_state_to_disk: "Inf"
dt_save_to_sol: "Inf"
de9a6bb
to
64080db
Compare
@@ -11,3 +11,5 @@ precip_model: "0M" | |||
rad: "allskywithclear" | |||
t_end: "10days" | |||
vert_diff: "true" | |||
dt_save_state_to_disk: "Inf" | |||
dt_save_to_sol: "Inf" |
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.
Line 4 of this file has dt_save_to_sol: "100days"
, which should be removed. Also, we try to keep the configs alphabetized so it's easier to compare them (and find duplicate entries like this). Could you alphabetize the new entries please?
When
saveat = Inf
, it is not possible to make anITime
. When this happens, we will instead pass in an empty array forsaveat
.