Skip to content

Changes

#55 (Oct 6, 2025, 3:05:06 AM)

  1. Clubb driver upgrades part2 (#1257) — noreply / githubweb

#54 (Oct 4, 2025, 3:05:08 AM)

  1. Must add -fopenmp back for now, since this is used for the openmp test and it also broke the BFB tests for an obnoxious reason - that test compiles each commit without cleaning the build, so the baseline commit had -fopenmp and compiled with openmp stuff enabled, but then the subsequent commits had it turned off, but no changes in the files, so it didn't recompile with it off, and only turned it off in the linking stage, causing a build error. RESOLVED:320551df13ee84bdb9280db0be788a36e1f03494 RESOLVED:6c0201d44694fadf7f4bb0d4d58c3a9871096a22 RESOLVED:26644de2ea83ee6335b273f54dd57afc8f6f4b0c — Gunther Huebler / githubweb

#53 (Oct 3, 2025, 3:05:07 AM)

  1. Adding variables to openacc data statements. Without this, the code crashes when using the GPU with l_godunov_upwind_xpyp_ta=.true. — Gunther Huebler / githubweb
  2. Modifying compiler configurations (mainly optimization level) in order to prepare for switching scipts and tests to cmake, specifically separating out this BIT_CHANGING commit from the rest — Gunther Huebler / githubweb
  3. thlm_ed and rtm_ed caused GPU errors since those variables were added to a acc loop, but never added to the acc data statement. This change makes it so they're only calculated on the CPU, since they are only used for stats, fixing the issue without adding the GPU memory footprint. — Gunther Huebler / githubweb
  4. Adding -Mstack_arrays to the nvfortran flags causes us to use more stack space, which means we need to allow processes to use more stack space (when using lots of columns, since that increases memory footprint). We do by using using 'ulimit BIGNUMBER'. — Gunther Huebler / githubweb

#52 (Oct 1, 2025, 5:36:32 PM)

  1. Making restart test not overwrite time_initial. The time_initial should be defined by the _model.in file and not overwritten, but this script was setting time_initial to time_restart, which resulted in the initial iteration value (iinit) to be 1 in the restart regardless of the restart time. — Gunther Huebler / githubweb
  2. Making the l_random_k_lh_start set the random generator seed before generating a random. This should fix the generalized grid test, which failed for the only flag set that turned on l_random_k_lh_start. Before, the test passed because we used the same random seed for all timesteps, preventing differences in the random call. But now we use a different seed each timestep, causing differences. To ensure reproducibility, we use the seed each timestep to generate rand_pool, which is an effective solution, but we need to do that for the rand_integer_in_range call in the l_random_k_lh_start code for the same reason. Since this does change the random that comes out, this is BIT_CHANGING, but only for runs using both SILHS and l_random_k_lh_start=.true. — Gunther Huebler / githubweb

#51 (Oct 1, 2025, 3:05:06 AM)

  1. SILHS reproducibility (#1258) — noreply / githubweb

#50 (Sep 30, 2025, 3:05:07 AM)

  1. Bug fix. This is BIT_CHANGING, but only on GPUs and only when l_soil_veg=.true. (which is only gabls3 currently). — Gunther Huebler / githubweb

#49 (Sep 28, 2025, 3:05:08 AM)

  1. Change tolerance in way that affects only single precision builds (#1256) — noreply / githubweb

#48 (Sep 27, 2025, 3:05:08 AM)

  1. Remove module vars from grid_adaptation_module (#1255) — noreply / githubweb

#47 (Sep 26, 2025, 3:05:08 AM)

  1. Precip frac fix (#1254) — noreply / githubweb

#46 (Sep 25, 2025, 3:05:08 AM)

  1. The cmake update (#1253) — noreply / githubweb
  2. Making cmake only optionally use ninja. Now we only use it if it's available. — Gunther Huebler / githubweb

#45 (Sep 24, 2025, 3:05:08 AM)

  1. Adding expldiff budget terms for thlm and rtm (#1252) — noreply / githubweb

#44 (Sep 15, 2025, 3:05:10 AM)

  1. Raw-copy updating src/Morrison_microphys — Cole Pickett / githubweb

#43 (Aug 10, 2025, 3:05:07 AM)

  1. Increase lh_num_samples to 64 for LBA case — noreply / githubweb
  2. Update License.txt in order to note that BIT_CHANGING:b5ec2335bc0cf95dbbe1f48a0043bb792a72d3c6 — noreply / githubweb

#42 (May 25, 2025, 3:05:11 AM)

  1. Clean out clubb_G_unit_reverse_dir_grid_test folder before running Jenkins test — noreply / githubweb

#41 (May 24, 2025, 3:05:07 AM)

  1. Finished my notes, documentation, and instructions for the generalized — bmg2 / githubweb

#40 (May 23, 2025, 3:05:07 AM)

  1. rename grid_adaptation and remapping modules — 0-freundlich-adenin / githubweb
  2. add fix for grid generalization — 0-freundlich-adenin / githubweb

#39 (May 22, 2025, 6:11:46 PM)

  1. I start adding some notes on grid generalization. — bmg2 / githubweb
  2. fix precision error of reals — noreply / githubweb

#38 (May 22, 2025, 3:05:08 AM)

  1. Merge grid adaptation implementation (#1249) — noreply / githubweb

#37 (May 20, 2025, 3:05:10 AM)

  1. I am adding pass/fail statements specific to the generalized grid test — bmg2 / githubweb
  2. For the long-duration clubb_generalized_vertical_grid_test, I am — bmg2 / githubweb
  3. zm and zt were mixed up in the error prints argument list. — bmg2 / githubweb

#36 (May 17, 2025, 3:05:08 AM)

  1. I updated run_bindiff_w_flags_config_host_flags to add flag set 3, — bmg2 / githubweb

#35 (May 15, 2025, 3:05:09 AM)

  1. Fix jenkins clubb error handling output (#1247) — noreply / githubweb

#34 (May 14, 2025, 3:05:10 AM)

  1. Removed simple wrappers from clubb_api_module (#1245) — noreply / githubweb

#33 (May 10, 2025, 3:05:09 AM)

  1. Fixed and equalized NaN checks in lapack_wrap (#1246) — noreply / githubweb

#32 (May 7, 2025, 3:05:07 AM)

  1. Cleaning up some grid generalization issues that were found within — bmg2 / githubweb

#31 (May 3, 2025, 3:05:06 AM)

  1. Run scm fixes (#1244) — noreply / githubweb
  2. I am adding a new .json file for host model flags. Flag set 1 consists — bmg2 / githubweb
  3. I am adding a Jenkinsfile for a new CLUBB generalized vertical — bmg2 / githubweb
  4. I am adding a second set of host flags as part of the generalized — bmg2 / githubweb
  5. Fixing an error in the previous commit. (lol, good ol' find and replace) — bmg2 / githubweb

#30 (May 2, 2025, 3:05:07 AM)

  1. Removed renaming operators `=>` and wrapper subroutines from silhs_api_module (#1240) — noreply / githubweb

#29 (Apr 30, 2025, 3:05:10 AM)

  1. Changing readme to add BIT_CHANGING:71eb9b3c5fd65c33905f17be8476a1dea89a2511 since that commit was a bug fix, so technically it was bit changing. — Gunther Huebler / githubweb

#28 (Apr 29, 2025, 3:05:06 AM)

  1. Small bug fix that has somehow gone unfound until recently. RESOLVED:f9d92113871bdf87b5e3147db6740ab654dc0967 — Gunther Huebler / githubweb

#27 (Apr 27, 2025, 3:05:08 AM)

  1. Technically, the following two commits are not BFB — noreply / githubweb

#26 (Apr 25, 2025, 3:54:51 PM)

  1. Running CLUBB with l_stability_correct_tau_zm = .true. now requires — bmg2 / githubweb
  2. These changes were accidentally made during the previous commit. The are — bmg2 / githubweb

#25 (Apr 25, 2025, 3:05:10 AM)

  1. Fix segfault involving initialization of CLUBB when l_add_dycore_grid=F — Steffen Domke / githubweb
  2. Removed unnecessary print statements in clubb_driver — Steffen Domke / githubweb
  3. Err code gpu fix (#1241) — noreply / githubweb

#24 (Apr 24, 2025, 3:05:06 AM)

  1. Err code struct (#1238) — noreply / githubweb
  2. Fix that causes BFB GPU tests to break. We need to copy these variables to the CPU before outputtin to disk. It's very unclear why the BFB GPU test ever passed without this. — Gunther Huebler / githubweb

#23 (Apr 23, 2025, 3:05:06 AM)

  1. I updated adj_low_res_nu for use with a generalized grid. It is — bmg2 / githubweb
  2. Since the call to adj_low_res_nu is not tested by CLUBB's main — bmg2 / githubweb

#22 (Apr 15, 2025, 3:05:09 AM)

  1. Add a blank line to README in order to note BIT_CHANGING:969bc4aa2a1db2664c0f92b98d2df5544c554c32 — noreply / githubweb

#21 (Apr 10, 2025, 3:05:09 AM)

  1. Clubb silhs gg (#1239) — noreply / githubweb

#20 (Mar 29, 2025, 3:05:09 AM)

  1. Hot fix to GPU code. These _init variables need to be copied to the GPU — Gunther Huebler / githubweb
  2. Second hot fix for more _init variables that need to be copied in. RESOLVED:ed9ae72a5eb28dbc036dd3e14b9312eea840feac — Gunther Huebler / githubweb
  3. Third hotfix of the day. This last change teased out a sneaky potentially fatal bug for cases using l_cloud_sed=.true., making this a BIT_CHANGING fix. Also need to include BIT_CHANGING:13ad3cfe7872df2fe91250265f4a81baa621a882 because that was a fix to a fatal bug in some cases. Also including some other small fixes that weren't breaking any tests, but might've caused problems in the future. — Gunther Huebler / githubweb
  4. Removing accidentally added file. — Gunther Huebler / githubweb

#19 (Mar 28, 2025, 3:05:06 AM)

  1. Clubb driver upgrades (#1225) — noreply / githubweb

#18 (Mar 26, 2025, 3:05:09 AM)

  1. QuadTune: Read in obs for custom metrics automatically from obs file. — Vince Larson / githubweb

#17 (Mar 25, 2025, 3:05:10 AM)

  1. QuadTune: Rename "setUpInputs" to "setUpConfig".  Rename other variables.  Improve comments in quadtune_driver.py. — Vince Larson / githubweb

#16 (Mar 23, 2025, 3:05:07 AM)

  1. QuadTune: Create config file where a user can input "namelist" info about his obs and simulations.  Also add an example config file so that the user can keep multiple namelists.  Do minor refactorings. — Vince Larson / githubweb
  2. QuadTune: Rename "linSoln" to "globTuned" in order to denote the global simulation result after tuning.  Add docstrings to more functions. — Vince Larson / githubweb
  3. Clubb test correct gg (#1237) — noreply / githubweb

#15 (Mar 22, 2025, 3:05:08 AM)

  1. QuadTune: Move import statements to top of file.  Move abbreviateParamsNames to set_up_inputs.  Neaten source code a bit. — Vince Larson / githubweb

#14 (Mar 21, 2025, 3:05:09 AM)

  1. QuadTune: Set plot-type flags in set_up_inputs.py and then feed them into create_nonbootstrap_figs.py. — Vince Larson / githubweb

#13 (Mar 20, 2025, 3:05:10 AM)

  1. QuadTune: Improve plot titles, add (a), (b), (c) to subpanels, etc. — Vince Larson / githubweb
  2. QuadTune: Remove dependence of QuadTune code on file analyze_sensitivity_matrix.py. — Vince Larson / githubweb
  3. QuadTune: Rename files. — Vince Larson / githubweb

#12 (Mar 16, 2025, 3:05:09 AM)

  1. QuadTune: Shut off bootstrap fig display, set useBootstrap=F, and improved fonts on scatterplots. — Vince Larson / githubweb

#11 (Mar 14, 2025, 8:21:47 AM)

  1. Updating the Jenkinsfile for the CLUBB generalized vertical grid test — bmg2 / githubweb
  2. Revert "When the run_clubb_w_varying_flags.py script is running a generalized" — bmg2 / githubweb

#10 (Mar 14, 2025, 1:16:44 AM)

  1. When the run_clubb_w_varying_flags.py script is running a generalized — bmg2 / githubweb

#9 (Mar 13, 2025, 9:03:52 PM)

  1. One of the previous issues with this python script is that it — bmg2 / githubweb
  2. I am setting the exit_code for the python script to be based on — bmg2 / githubweb
  3. I added some helpful print statements and imported "sys" for the — bmg2 / githubweb
  4. Changing the generalized vertical grid Jenkins test to use the new — bmg2 / githubweb

#8 (Mar 13, 2025, 3:05:07 AM)

  1. I added a stripped down version of the run_bindiff_w_flags.py script — bmg2 / githubweb

#7 (Mar 12, 2025, 3:05:08 AM)

  1. The generalized grid test should not output a clubb fatal error when it — bmg2 / githubweb

#6 (Mar 8, 2025, 3:05:08 AM)

  1. Revert "I have no idea if it's appropriate to include gr in this statment," — bmg2 / githubweb
  2. Added a special G unit Jenkins test for the Reverse Direction — bmg2 / githubweb
  3. I accidentally committed G_unit_tests.in as part of my previous commit. — bmg2 / githubweb
  4. I forgot to update the test name in the Jenkinsfile. — bmg2 / githubweb
  5. I discovered that I inadvertently change an $acc statement that — bmg2 / githubweb

#5 (Mar 6, 2025, 3:05:08 AM)

  1. I have no idea if it's appropriate to include gr in this statment, — bmg2 / githubweb

#4 (Mar 5, 2025, 6:27:25 PM)

  1. Eliminate GOTO statement in stats_clubb_utilities (#1233) — noreply / githubweb
  2. Updated Jenkins api_commitment_test to python3 (#1235) — noreply / githubweb
  3. Fixed Jenkins api_commitment_test (#1236) — noreply / githubweb
  4. Added some missing acc parallel statments around some the loops — bmg2 / githubweb
  5. Fixed a bug — bmg2 / githubweb

#3 (Mar 5, 2025, 3:05:09 AM)

  1. I changed the variable type within grid function flip from dp to — bmg2 / githubweb
  2. Fixed a compiling issue with CAM-CLUBB. — bmg2 / githubweb
  3. Hopefully this helps the cpu vs. gpu tests. — bmg2 / githubweb
  4. There were some flips inside the stats code for BUGSrad that required — bmg2 / githubweb

#2 (Mar 4, 2025, 3:05:10 AM)

  1. Updated calls to some CLUBB subroutines in the wake of recent CLUBB — bmg2 / githubweb