From 60fe23105e8b5534e2acbce08255aae2e5bc0e38 Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Mon, 11 Sep 2023 19:26:02 +0000 Subject: [PATCH 1/3] ARFC - add debug flag to resolve wave post runtimes The wave post jobs were running long in production. GDIT added the `ldebug` PBS statements to the wave post ecf scripts to resolve the issue. This change became GFSv16.3.8 in operations. Refs #1843 --- ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf | 1 + ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf | 1 + ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf | 1 + 3 files changed, 3 insertions(+) diff --git a/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf b/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf index 8f59963c97b..1c88d43ffd3 100755 --- a/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf +++ b/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf @@ -7,6 +7,7 @@ #PBS -l select=3:ncpus=80:ompthreads=1 #PBS -l place=vscatter:exclhost #PBS -l debug=true +#PBS -l ldebug=true model=gfs %include diff --git a/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf b/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf index 8464c73fa56..b1a8cfc18a2 100755 --- a/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf +++ b/ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf @@ -7,6 +7,7 @@ #PBS -l select=4:ncpus=112:ompthreads=1 #PBS -l place=vscatter:exclhost #PBS -l debug=true +#PBS -l ldebug=true model=gfs %include diff --git a/ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf b/ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf index bcf7f4c8c3f..0a95f5faf86 100755 --- a/ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf +++ b/ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf @@ -7,6 +7,7 @@ #PBS -l select=4:ncpus=50:ompthreads=1 #PBS -l place=vscatter:exclhost #PBS -l debug=true +#PBS -l ldebug=true model=gfs %include From 01e4fb8cd1e62785e8bf57f55921db5f2c0aac23 Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Mon, 11 Sep 2023 19:37:28 +0000 Subject: [PATCH 2/3] Create release notes for GFSv16.3.8 Refs #1843 --- docs/Release_Notes.gfs.v16.3.8.md | 129 ++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 docs/Release_Notes.gfs.v16.3.8.md diff --git a/docs/Release_Notes.gfs.v16.3.8.md b/docs/Release_Notes.gfs.v16.3.8.md new file mode 100644 index 00000000000..f102ffb2de5 --- /dev/null +++ b/docs/Release_Notes.gfs.v16.3.8.md @@ -0,0 +1,129 @@ +GFS V16.3.8 RELEASE NOTES + +------- +PRELUDE +------- + +A debug option is added to the wave post scripts to resolve an issue with long runtimes in production. + +IMPLEMENTATION INSTRUCTIONS +--------------------------- + +The NOAA VLab and the NOAA-EMC and NCAR organization spaces on GitHub .com are used to manage the GFS code. The SPA(s) handling the GFS implementation need to have permissions to clone VLab Gerrit repositories and private NCAR UPP_GTG repository. All NOAA-EMC organization repositories are publicly readable and do not require access permissions. Please proceed with the following steps to install the package on WCOSS2: + +```bash +cd $PACKAGEROOT +mkdir gfs.v16.3.8 +cd gfs.v16.3.8 +git clone -b EMC-v16.3.8 https://github.com/NOAA-EMC/global-workflow.git . +cd sorc +./checkout.sh -o +``` + +The checkout script extracts the following GFS components: + +| Component | Tag | POC | +| --------- | ----------- | ----------------- | +| MODEL | GFS.v16.3.0 | Jun.Wang@noaa.gov | +| GLDAS | gldas_gfsv16_release.v.2.1.0 | Helin.Wei@noaa.gov | +| GSI | gfsda.v16.3.7 | Andrew.Collard@noaa.gov | +| UFS_UTILS | ops-gfsv16.3.0 | George.Gayno@noaa.gov | +| POST | upp_v8.2.0 | Wen.Meng@noaa.gov | +| WAFS | gfs_wafs.v6.3.1 | Yali.Mao@noaa.gov | + +To build all the GFS components, execute: +```bash +./build_all.sh +``` +The `build_all.sh` script compiles all GFS components. Runtime output from the build for each package is written to log files in directory logs. To build an individual program, for instance, gsi, use `build_gsi.sh`. + +Next, link the executables, fix files, parm files, etc in their final respective locations by executing: +```bash +./link_fv3gfs.sh nco wcoss2 +``` + +Lastly, link the ecf scripts by moving back up to the ecf folder and executing: +```bash +cd ../ecf +./setup_ecf_links.sh +``` + +VERSION FILE CHANGES +-------------------- + +* `versions/run.ver` - change `version=v16.3.8` and `gfs_ver=v16.3.8` + +SORC CHANGES +------------ + +* No changes from GFS v16.3.7 + +JOBS CHANGES +------------ + +* No changes from GFS v16.3.7 + +PARM/CONFIG CHANGES +------------------- + +* No changes from GFS v16.3.7 + +SCRIPT CHANGES +-------------- + +* Add the `-l ldebug=true` PBS option to the following ecf scripts: + * `ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpntbll.ecf` + * `ecf/scripts/gfs/wave/post/jgfs_wave_post_bndpnt.ecf` + * `ecf/scripts/gfs/wave/post/jgfs_wave_postpnt.ecf` + +FIX CHANGES +----------- + +* No changes from GFS v16.3.7 + +MODULE CHANGES +-------------- + +* No changes from GFS v16.3.7 + +CHANGES TO FILE SIZES +--------------------- + +* No changes from GFS v16.3.7 + +ENVIRONMENT AND RESOURCE CHANGES +-------------------------------- + +* No changes from GFS v16.3.7 + +PRE-IMPLEMENTATION TESTING REQUIREMENTS +--------------------------------------- + +* Which production jobs should be tested as part of this implementation? + * N/A +* Does this change require a 30-day evaluation? + * No + +DISSEMINATION INFORMATION +------------------------- + +* No changes from GFS v16.3.7 + +HPSS ARCHIVE +------------ + +* No changes from GFS v16.3.7 + +JOB DEPENDENCIES AND FLOW DIAGRAM +--------------------------------- + +* No changes from GFS v16.3.7 + +DOCUMENTATION +------------- + +* No changes from GFS v16.3.7 + +PREPARED BY +----------- +Kate.Friedman@noaa.gov From 452074d0067df1a2885371dbca9addd8a8ee0209 Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Mon, 11 Sep 2023 19:39:06 +0000 Subject: [PATCH 3/3] Update version to v16.3.8 Update run.ver to new v16.3.8 GFS version. Refs #1843 --- versions/run.ver | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versions/run.ver b/versions/run.ver index 348e1c7414f..3770329f27c 100755 --- a/versions/run.ver +++ b/versions/run.ver @@ -1,5 +1,5 @@ -export version=v16.3.7 -export gfs_ver=v16.3.7 +export version=v16.3.8 +export gfs_ver=v16.3.8 export ukmet_ver=v2.2 export ecmwf_ver=v2.1 export nam_ver=v4.2