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

[develop] Bug fix for Issue #851 (renaming NET to NET_default) #868

Merged
merged 3 commits into from
Jul 25, 2023

Conversation

gsketefian
Copy link
Collaborator

@gsketefian gsketefian commented Jul 20, 2023

DESCRIPTION OF CHANGES:

The renaming of the configuration variable NET to NET_default by PR #828 broke the WE2E test MET_ensemble_verification_only_vx_time_lag (see Issue #851). This PR fixes the bug and adds that WE2E test to the list of coverage tests on Hera (currently that test is only in the comprehensive tests list).

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

TESTS CONDUCTED:

  • hera.intel
  • orion.intel
  • cheyenne.intel
  • cheyenne.gnu
  • gaea.intel
  • jet.intel
  • wcoss2.intel
  • NOAA Cloud (indicate which platform)
  • Jenkins
  • fundamental test suite
  • comprehensive tests (specify which if a subset was used)

Ran the WE2E test MET_ensemble_verification_only_vx_time_lag as well as the set of fundamental tests on Hera with Intel. All passed.

DEPENDENCIES:

None needed.

ISSUE:

Fixes Issue #851.

CHECKLIST

  • My code follows the style guidelines in the Contributor's Guide
  • I have performed a self-review of my own code using the Code Reviewer's Guide
  • I have commented my code, particularly in hard-to-understand areas
  • My changes need updates to the documentation. I have made corresponding changes to the documentation
  • My changes do not require updates to the documentation (explain).
  • My changes generate no new warnings
  • New and existing tests pass with my changes
  • Any dependent changes have been merged and published

LABELS (optional):

A Code Manager needs to add the following labels to this PR:

  • Work In Progress
  • bug
  • enhancement
  • documentation
  • release
  • high priority
  • run_ci
  • run_we2e_fundamental_tests
  • run_we2e_comprehensive_tests
  • Needs Cheyenne test
  • Needs Jet test
  • Needs Hera test
  • Needs Orion test
  • help wanted

…bles that got the _default prefix appended by PR #) where necessary to address bug in Issue ufs-community#851 (the WE2E test "MET_ensemble_verification_only_vx_time_lag" is failing).
@gsketefian gsketefian changed the title [develop] Bug fix for Issue #851 NET to NET_default renaming [develop] Bug fix for Issue #851 (renaming NET to NET_default) Jul 21, 2023
@gsketefian gsketefian marked this pull request as ready for review July 21, 2023 11:26
@MichaelLueken MichaelLueken added the bug Something isn't working label Jul 21, 2023
Copy link
Collaborator

@mkavulich mkavulich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, this even includes a change that I missed in my PR. 👍

Copy link
Collaborator

@MichaelLueken MichaelLueken left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gsketefian -

Overall, these changes look good to me! I was able to successfully run the MET_ensemble_verification_only_vx_time_lag WE2E test and also the Hera GNU WE2E coverage tests successfully passed as well.

However, after noting the additional changes that you made to ush/config_defaults.yaml, I decided to run the Hera Intel WE2E coverage tests. The grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 test failed with the following message:

FATAL from PE 5: compute_qs: saturation vapor pressure table overflow, nbad= 1

When I removed the _default from NET_default on lines 2453, 2454, and 2455 of ush/config_defaults.yaml, the test ran without issue.

@chan-hoo -

Since you made these changes in preparation for introducing ecflow into the SRW App for the AQM implementation, should these three lines also include the _default, or should they be NET? Thanks!

Comment on lines 2453 to 2455
FCST_SUBDIR_TEMPLATE: '{% if user.RUN_ENVIR == "nco" %}${NET_default}.{init?fmt=%Y%m%d?shift=-${time_lag}}/{init?fmt=%H?shift=-${time_lag}}{% else %}{init?fmt=%Y%m%d%H?shift=-${time_lag}}{% if global.DO_ENSEMBLE %}/${ensmem_name}{% endif %}/postprd{% endif %}'
FCST_FN_TEMPLATE: '${NET_default}.t{init?fmt=%H?shift=-${time_lag}}z{% if user.RUN_ENVIR == "nco" and global.DO_ENSEMBLE %}.${ensmem_name}{% endif %}.prslev.f{lead?fmt=%HHH?shift=${time_lag}}.${POST_OUTPUT_DOMAIN_NAME}.grib2'
FCST_FN_METPROC_TEMPLATE: '${NET_default}.t{init?fmt=%H}z{% if user.RUN_ENVIR == "nco" and global.DO_ENSEMBLE %}.${ensmem_name}{% endif %}.prslev.f{lead?fmt=%HHH}.${POST_OUTPUT_DOMAIN_NAME}_a${ACCUM_HH}h.nc'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While manually running the coverage.hera.intel.nco WE2E tests, I'm encountering the following failure in the grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 test, in the run_fcst task:

FATAL from PE 5: compute_qs: saturation vapor pressure table overflow, nbad= 1

When I removed the _default from NET_default on lines 2453, 2454, and 2455, the test once again passes.

If you would like to run the Hera Intel coverage WE2E tests, please set the following environmental variables:

setenv SRW_PLATFORM "hera"
setenv SRW_COMPILER "intel"
setenv WORKSPACE "/path/to/your/ufs-srweather-app"
setenv SRW_WE2E_COMPREHENSIVE_TESTS "False"
setenv SRW_PROJECT "enter_your_Hera_allocation_account_here"

With the above variables set, you should be able to go into .cicd/scripts, then run ./srw_build.sh to build the SRW App, then ./srw_test.sh to run the Hera Intel coverage tests.

Alternatively, you should be able to launch the tests without the environment variables, but instead use the following command from tests/WE2E:

./setup_WE2E_tests.sh hera Hera_allocation_account intel coverage --expt_basedir=/path/to/where/you/want/your/expt_dirs --ops_root=/path/to/where/you/want/your/nco_dirs

where Hera_allocation_account in the above command line is your account to run jobs on Hera.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MichaelLueken That's strange because those 3 variables are used only in verification as far as I know (I created them), and the test grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 doesn't run any vx tasks.

I will run this test and see what happens. I normally run the WE2E tests using the run_WE2E_tests.py script. Should that method give the same result as using the setup_WE2E_tests.sh (i.e. using your method)?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gsketefian I don't think that running the coverage.hera.intel.nco would work the same way if you ran it through ./run_WE2E_tests.py. The Hera Intel coverage tests forces all of the WE2E tests to run in NCO-mode. In order to mimic this outside of manually running the Jenkins tests or running the ./setup_WE2E_tests.sh script, you would need to set run_envir: nco for all tests in the coverage.hera.intel.nco machine_suites file.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MichaelLueken Thanks for the explanation. Since I'm more familiar with run_WE2E_tests.py, I first wanted to make sure the test grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 runs successfully using this script. So:

  1. I ran this test (in community mode) using run_WE2E_tests.py. The test completed successfully. You can see the output at:
    /scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/expt_dirs/NET_02/grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
    
  2. To repeat the same test except in NCO mode, I created a new test in
    ufs-srweather-app/tests/WE2E/test_configs/grids_extrn_mdls_suites_nco
    
    named nco_grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2. The only difference between this and the original test is that it has RUN_ENVIR set to "nco", i.e. in the config file, we have
     user:
       RUN_ENVIR: nco
    I ran this again using run_WE2E_tests.py. This test completed successfully. You can see the output at:
    /scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/expt_dirs/NET_02/nco_grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2
    
    and at
    /scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/expt_dirs/nco_dirs.works01
    

This makes me think the problem is in the way setup_WE2E_tests.sh runs the test and/or due to something that was changed by PR #847 since my clone is one PR behind that. I'll try it with setup_WE2E_tests.sh. If that works, I'll update my hash to PR #847 and retry.

Copy link
Collaborator Author

@gsketefian gsketefian Jul 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MichaelLueken I tried the way you suggested of rebuilding using .cicd/scripts/srw_build.sh, then running .cicd/scripts/srw_test.sh. To make things simpler, I only included grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 in coverage.hera.intel.nco. The test succeeded. You can find the experiment directory at

/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/ufs-srweather-app/expt_dirs/grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2.hash_f9696e1b

and the nco_dirs directory at

/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/ufs-srweather-app/nco_dirs.hash_f9696e1b

Ok, last thing to try is to update my hash (i.e. merge latest develop into my branch).

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MichaelLueken As a final test, I merged the latest develop (with PR #847) into my branch and reran srw_test.sh as above (I didn't rebuild since none of the external repo hashes changed). The test succeeded. You can find the experiment directory at

/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/ufs-srweather-app/expt_dirs/grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2.hash_6e5b4275

and the nco_dirs directory at

/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/TEST_SRW_phys_tendencies/ufs-srweather-app/nco_dirs.hash_6e5b4275

So I don't know why your tests failed but mine work!

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gsketefian I've found in my testing that running just the grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 test also lead to the test passing. The only time that the test failed was when it was being run with the full suite of coverage tests. When the _default was removed, then all of the coverage tests passed.

Since the updated MET_ensemble_verification_only_vx_time_lag test is passing and the updated coverage.hera.gnu.com suite is passing, and your changes look fine to me, I will go ahead and approve these changes and let the automated testing run. I'll let you know if the Hera Intel test continues to fail and will direct you to the output. If the test continues to fail, then these changes will likely need to be removed and a new issue will need to be opened to address this.

Copy link
Collaborator

@MichaelLueken MichaelLueken left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gsketefian As noted previously, the updated MET_ensemble_verification_only_vx_time_lag WE2E test and the Hera GNU coverage tests were all ran and all successfully passed. The changes look good and make sense. I will go ahead and approve this PR and will run the automated Jenkins tests. I'll let you know if the Hera Intel test continues to fail.

@MichaelLueken MichaelLueken added the run_we2e_coverage_tests Run the coverage set of SRW end-to-end tests label Jul 24, 2023
@MichaelLueken
Copy link
Collaborator

MichaelLueken commented Jul 24, 2023

@gsketefian The coverage tests failed on Hera Intel:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used
----------------------------------------------------------------------------------------------------
get_from_HPSS_ics_FV3GFS_lbcs_FV3GFS_fmt_grib2_2019061200          COMPLETE               6.49
get_from_HPSS_ics_GDAS_lbcs_GDAS_fmt_netcdf_2022040400_ensemble_2  COMPLETE             788.70
get_from_HPSS_ics_HRRR_lbcs_RAP                                    COMPLETE              15.02
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp  COMPLETE              11.96
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2        DEAD                   6.90
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16          COMPLETE              13.86
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_RAP                 COMPLETE              10.55
grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2        COMPLETE               7.38
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2         COMPLETE             258.16
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16           COMPLETE             323.80
grid_RRFS_CONUScompact_3km_ics_HRRR_lbcs_RAP_suite_HRRR            COMPLETE             340.63
pregen_grid_orog_sfc_climo                                         COMPLETE               8.81
----------------------------------------------------------------------------------------------------
Total                                                              DEAD                1792.26

The grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 test is failing in run_fcst with the following error:

FATAL from PE 5: compute_qs: saturation vapor pressure table overflow, nbad= 1

Please see /scratch1/NCEPDEV/stmp2/role.epic/jenkins/workspace/fs-srweather-app_pipeline_PR-868__2/expt_dirs/grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 for the expt_dirs log files and /scratch1/NCEPDEV/stmp2/role.epic/jenkins/workspace/fs-srweather-app_pipeline_PR-868__2/nco_dirs/tmp/run_fcst_mem000.id_1690208528_2019070100 for the nco_dirs space.

@MichaelLueken MichaelLueken added the DO_NOT_MERGE Ensure that a PR isn't merged label Jul 24, 2023
@MichaelLueken
Copy link
Collaborator

Adding the DO_NOT_MERGE label until the Hera Intel coverage tests successfully pass.

@MichaelLueken
Copy link
Collaborator

@gsketefian -

I've run several additional tests and I think we can move forward with your changes once PR #853 has been merged. When I apply the changes you made to ush/config_defaults.yaml to my local copy of @willmayfield's branch, all tests pass. I am currently in the process of wrapping up testing on a local copy of your branch with PR #853 merged to it. The grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 test has successfully passed.

If the rest of the tests pass, I will go ahead and merge PR #853. You will need to merge develop into your branch at that time (there will be conflicts in ush/config_defaults.yaml). Once merged, I'll be able to resubmit the automated Jenkins tests on Hera. All tests should pass at that time, so this PR should be able to get merged at that time.

@MichaelLueken
Copy link
Collaborator

Manual tests on Hera Intel using the work from PR #853 with adding the modifications made to ush/config_defaults.yaml led to all tests passing:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used 
----------------------------------------------------------------------------------------------------
get_from_HPSS_ics_FV3GFS_lbcs_FV3GFS_fmt_grib2_2019061200          COMPLETE               7.36
get_from_HPSS_ics_GDAS_lbcs_GDAS_fmt_netcdf_2022040400_ensemble_2  COMPLETE             784.10
get_from_HPSS_ics_HRRR_lbcs_RAP                                    COMPLETE              15.69
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp  COMPLETE              12.34
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2        COMPLETE               8.98
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16          COMPLETE              17.42
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_RAP                 COMPLETE              10.92
grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2        COMPLETE               8.13
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2         COMPLETE             261.38
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16           COMPLETE             320.03
grid_RRFS_CONUScompact_3km_ics_HRRR_lbcs_RAP_suite_HRRR            COMPLETE             340.26
pregen_grid_orog_sfc_climo                                         COMPLETE               9.47
----------------------------------------------------------------------------------------------------
Total                                                              COMPLETE            1796.08

Similarly, merging PR #853 into the bugfix/NET_default branch also led to all tests successfully passing:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used 
----------------------------------------------------------------------------------------------------
get_from_HPSS_ics_FV3GFS_lbcs_FV3GFS_fmt_grib2_2019061200          COMPLETE               6.83
get_from_HPSS_ics_GDAS_lbcs_GDAS_fmt_netcdf_2022040400_ensemble_2  COMPLETE             772.13
get_from_HPSS_ics_HRRR_lbcs_RAP                                    COMPLETE              15.29
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp  COMPLETE              12.15
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2        COMPLETE              10.71
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16          COMPLETE              16.33
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_RAP                 COMPLETE              10.82
grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2        COMPLETE               8.00
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2         COMPLETE             254.53
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16           COMPLETE             315.27
grid_RRFS_CONUScompact_3km_ics_HRRR_lbcs_RAP_suite_HRRR            COMPLETE             337.23
pregen_grid_orog_sfc_climo                                         COMPLETE              10.39
----------------------------------------------------------------------------------------------------
Total                                                              COMPLETE            1769.68

I will go ahead and merge PR #853 now.

@gsketefian - Please merge the latest develop into your bugfix/NET_default branch and address the minor conflicts in ush/config_defaults.yaml and I will rerun the automated Jenkins tests on Hera. Once they pass, I will move forward with merging this work. Thanks!

@gsketefian
Copy link
Collaborator Author

@MichaelLueken I just merged the latest develop (including PR #853). Thanks.

@MichaelLueken
Copy link
Collaborator

Thanks, @gsketefian! I've kicked off the automated Jenkins tests on Hera now.

@MichaelLueken
Copy link
Collaborator

The Cheyenne Intel WE2E coverage tests were manually ran on Hera Intel and all successfully passed:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used 
----------------------------------------------------------------------------------------------------
custom_GFDLgrid__GFDLgrid_USE_NUM_CELLS_IN_FILENAMES_eq_FALSE      COMPLETE              16.03
grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16_plot     COMPLETE              35.65
grid_RRFS_CONUS_25km_ics_NAM_lbcs_NAM_suite_GFS_v16                COMPLETE              20.79
grid_RRFS_CONUScompact_13km_ics_HRRR_lbcs_RAP_suite_HRRR           COMPLETE              27.04
grid_RRFS_CONUScompact_25km_ics_HRRR_lbcs_RAP_suite_RRFS_v1beta    COMPLETE               9.44
grid_SUBCONUS_Ind_3km_ics_HRRR_lbcs_HRRR_suite_HRRR                COMPLETE              17.87
pregen_grid_orog_sfc_climo                                         COMPLETE              12.52
specify_template_filenames                                         COMPLETE              12.15
----------------------------------------------------------------------------------------------------
Total                                                              COMPLETE             151.49

@MichaelLueken
Copy link
Collaborator

The Cheyenne GNU tests were manually ran on Hera GNU and all successfully passed:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used 
----------------------------------------------------------------------------------------------------
grid_CONUS_25km_GFDLgrid_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16      COMPLETE              25.64
grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_RRFS_v1beta      COMPLETE             234.77
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp  COMPLETE             124.00
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v17_p8_plot  COMPLETE              32.45
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_HRRR             COMPLETE              41.82
grid_RRFS_CONUScompact_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16   COMPLETE              28.30
grid_RRFS_NA_13km_ics_FV3GFS_lbcs_FV3GFS_suite_RAP                 COMPLETE             319.86
grid_SUBCONUS_Ind_3km_ics_NAM_lbcs_NAM_suite_GFS_v16               COMPLETE              52.01
specify_EXTRN_MDL_SYSBASEDIR_ICS_LBCS                              COMPLETE              11.07
----------------------------------------------------------------------------------------------------
Total                                                              COMPLETE             869.92

Additionally, the reruns of the Jenkins automated WE2E coverage tests on Hera successfully passed -
Hera Intel:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used
----------------------------------------------------------------------------------------------------
get_from_HPSS_ics_FV3GFS_lbcs_FV3GFS_fmt_grib2_2019061200          COMPLETE               6.71
get_from_HPSS_ics_GDAS_lbcs_GDAS_fmt_netcdf_2022040400_ensemble_2  COMPLETE             795.77
get_from_HPSS_ics_HRRR_lbcs_RAP                                    COMPLETE              15.08
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp  COMPLETE              11.45
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2        COMPLETE              10.46
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16          COMPLETE              15.98
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_RAP                 COMPLETE              11.58
grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2        COMPLETE               9.37
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2         COMPLETE             262.30
grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16           COMPLETE             318.78
grid_RRFS_CONUScompact_3km_ics_HRRR_lbcs_RAP_suite_HRRR            COMPLETE             346.94
pregen_grid_orog_sfc_climo                                         COMPLETE              10.79
----------------------------------------------------------------------------------------------------
Total                                                              COMPLETE            1815.21

Hera GNU:

----------------------------------------------------------------------------------------------------
Experiment name                                                  | Status    | Core hours used
----------------------------------------------------------------------------------------------------
get_from_HPSS_ics_FV3GFS_lbcs_FV3GFS_fmt_nemsio_2019061200         COMPLETE              24.33
get_from_NOMADS_ics_FV3GFS_lbcs_FV3GFS                             COMPLETE              44.32
grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_HRRR             COMPLETE             242.28
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp  COMPLETE              20.69
grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_RRFS_v1beta      COMPLETE              38.58
grid_SUBCONUS_Ind_3km_ics_HRRR_lbcs_RAP_suite_WoFS_v0              COMPLETE              24.63
GST_release_public_v1                                              COMPLETE              58.19
MET_verification_only_vx                                           COMPLETE               0.22
MET_ensemble_verification_only_vx_time_lag                         COMPLETE               4.12
nco_grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16      COMPLETE             347.64
----------------------------------------------------------------------------------------------------
Total                                                              COMPLETE             805.00

Removing DO_NOT_MERGE label and moving forward with merging this PR now.

@MichaelLueken MichaelLueken removed the DO_NOT_MERGE Ensure that a PR isn't merged label Jul 25, 2023
@MichaelLueken MichaelLueken merged commit 25eb2fa into ufs-community:develop Jul 25, 2023
@gsketefian
Copy link
Collaborator Author

@MichaelLueken Thanks for testing and merging.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working run_we2e_coverage_tests Run the coverage set of SRW end-to-end tests
Projects
None yet
3 participants