-
Notifications
You must be signed in to change notification settings - Fork 130
[develop] Add Gaea C5 to supported platforms #898
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
Merged
MichaelLueken
merged 20 commits into
ufs-community:develop
from
natalie-perlin:develop_gaea_c5
Sep 27, 2023
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d9e32ab
adding gaea_c5 as a new platform
6f834a3
update modulefiles, machine file for Gaea_c5
a39f15a
Merge branch 'develop' into develop_gaea_c5
7812ca3
changes for Gaea C5
25bdcab
update for for Gaea C5 modulefile
5cc2913
merge with recent changes in develop
335adc8
update ./ush/machine/gaea_c5yaml, srw_common.lua
94bb634
updated .cicd/scripts/wrapper_srw_ftest.sh for gaea_c5
872f535
Merge remote-tracking branch 'origin/develop' into develop_gaea_c5
2b32648
gaea C5 updates for tests
72117d1
Merge branch 'ufs-community:develop' into develop_gaea_c5
natalie-perlin 05f57f5
Merge branch 'develop' into develop_gaea_c5
natalie-perlin 94f766f
Update wflow_gaea_c5.lua
natalie-perlin 2e06fbb
Update Jenkinsfile
natalie-perlin ff9f521
Update gaea_c5.yaml
natalie-perlin 91765d6
Merge remote-tracking branch 'origin2/develop_gaea_c5' into develop
9605fc0
rename gaea_c5 to gaea-c5
3c5c0f8
Merge branch 'develop' into develop_gaea_c5
natalie-perlin a479390
Update wrapper_srw_ftest.sh for gaea-c5
natalie-perlin 7bf8557
Update wrapper_srw_ftest.sh, qos=normal for gaea-c5
natalie-perlin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| help([[ | ||
| This module loads libraries for building the UFS SRW App on | ||
| the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0 | ||
| ]]) | ||
|
|
||
| whatis([===[Loads libraries needed for building the UFS SRW App on Gaea C5 ]===]) | ||
|
|
||
| load(pathJoin("cmake", os.getenv("cmake_ver") or "3.23.1")) | ||
|
|
||
| prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/C5/hpc-stack/intel-classic-2023.1.0/modulefiles/stack") | ||
| load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) | ||
| load(pathJoin("intel-classic", os.getenv("intel_classic_ver") or "2023.1.0")) | ||
| load(pathJoin("cray-mpich", os.getenv("cray_mpich_ver") or "8.1.25")) | ||
| load(pathJoin("hpc-intel-classic", os.getenv("hpc_intel_classic_ver") or "2023.1.0")) | ||
| load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "8.1.25")) | ||
|
|
||
| load("srw_common") | ||
|
|
||
| unload("darshan-runtime/3.4.0") | ||
| setenv("CFLAGS","-diag-disable=10441") | ||
| setenv("FFLAGS","-diag-disable=10441") | ||
|
|
||
| setenv("CC","cc") | ||
| setenv("FC","ftn") | ||
| setenv("CXX","CC") | ||
| setenv("CMAKE_C_COMPILER","cc") | ||
| setenv("CMAKE_Fortran_COMPILER","ftn") | ||
| setenv("CMAKE_CXX_COMPILER","CC") | ||
| setenv("CMAKE_Platform","gaea-c5.intel") | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/C5/miniconda3/modulefiles") | ||
| load(pathJoin("miniconda3", os.getenv("miniconda3_ver") or "4.12.0")) | ||
|
|
||
| setenv("SRW_ENV", "regional_workflow") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| unload("miniconda3") | ||
| prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/C5/miniconda3/modulefiles") | ||
| load(pathJoin("miniconda3", os.getenv("miniconda3_ver") or "4.12.0")) | ||
|
|
||
| setenv("SRW_ENV", "workflow_tools") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --[[ | ||
| Compiler-specific modules are used for met and metplus libraries | ||
| --]] | ||
| load(pathJoin("met", os.getenv("met_ver") or "10.1.2")) | ||
| load(pathJoin("metplus", os.getenv("metplus_ver") or "4.1.3")) | ||
| load("python_srw") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| help([[ | ||
| This module loads python environement for running the UFS SRW App on | ||
| the NOAA RDHPC machine Gaea C5 | ||
| ]]) | ||
|
|
||
| whatis([===[Loads libraries needed for running the UFS SRW App on gaea ]===]) | ||
|
|
||
| unload("python") | ||
| load("set_pythonpath") | ||
| prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/C5/miniconda3/modulefiles") | ||
| load(pathJoin("miniconda3", os.getenv("miniconda3_ver") or "4.12.0")) | ||
| prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/C5/rocoto/modulefiles") | ||
| load("rocoto") | ||
|
|
||
| pushenv("MKLROOT", "/opt/intel/oneapi/mkl/2023.1.0/") | ||
|
|
||
| if mode() == "load" then | ||
| LmodMsgRaw([===[Please do the following to activate conda: | ||
| > conda activate workflow_tools | ||
| ]===]) | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| community | ||
| custom_ESGgrid_NewZealand_3km | ||
| grid_RRFS_CONUScompact_13km_ics_HRRR_lbcs_RAP_suite_RRFS_v1beta | ||
| grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_RAP | ||
| grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_HRRR | ||
| grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15_thompson_mynn_lam3km | ||
| grid_RRFS_CONUScompact_25km_ics_HRRR_lbcs_HRRR_suite_HRRR | ||
| grid_RRFS_CONUScompact_3km_ics_HRRR_lbcs_RAP_suite_RRFS_v1beta | ||
| grid_SUBCONUS_Ind_3km_ics_RAP_lbcs_RAP_suite_RRFS_v1beta_plot | ||
| nco_ensemble | ||
| nco_grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15_thompson_mynn_lam3km |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| platform: | ||
| WORKFLOW_MANAGER: rocoto | ||
| NCORES_PER_NODE: 128 | ||
| SCHED: slurm | ||
| TEST_CCPA_OBS_DIR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/obs_data/ccpa/proc | ||
| TEST_MRMS_OBS_DIR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/obs_data/mrms/proc | ||
| TEST_NDAS_OBS_DIR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/obs_data/ndas/proc | ||
| DOMAIN_PREGEN_BASEDIR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/FV3LAM_pregen | ||
| QUEUE_DEFAULT: normal | ||
| QUEUE_FCST: normal | ||
| QUEUE_HPSS: normal | ||
| REMOVE_MEMORY: True | ||
| PARTITION_HPSS: eslogin_c5 | ||
| RUN_CMD_FCST: srun --export=ALL -n ${PE_MEMBER01} | ||
| RUN_CMD_POST: srun --export=ALL -n $nprocs | ||
| RUN_CMD_PRDGEN: srun --export=ALL -n $nprocs | ||
| RUN_CMD_SERIAL: time | ||
| RUN_CMD_UTILS: srun --export=ALL -n $nprocs | ||
| SCHED_NATIVE_CMD: --clusters=c5 --partition=batch --export=NONE | ||
| SCHED_NATIVE_CMD_HPSS: --clusters=es --partition=eslogin_c5 --export=NONE | ||
| PRE_TASK_CMDS: '{ ulimit -s unlimited; ulimit -a; }' | ||
| TEST_EXTRN_MDL_SOURCE_BASEDIR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data | ||
| TEST_PREGEN_BASEDIR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/FV3LAM_pregen | ||
| TEST_ALT_EXTRN_MDL_SYSBASEDIR_ICS: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/dummy_FV3GFS_sys_dir | ||
| TEST_ALT_EXTRN_MDL_SYSBASEDIR_LBCS: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/dummy_FV3GFS_sys_dir | ||
| TEST_VX_FCST_INPUT_BASEDIR: '{{ "/lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/output_data/fcst_" }}{{ "ens" if (global.NUM_ENS_MEMBERS > 0) else "det" }}{{ "/{{workflow.PREDEF_GRID_NAME}}" }}{% raw %}{% endraw %}' | ||
| FIXaer: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/fix/fix_aer | ||
| FIXgsi: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/fix/fix_gsi | ||
| FIXgsm: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/fix/fix_am | ||
| FIXlut: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/fix/fix_lut | ||
| FIXorg: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/fix/fix_orog | ||
| FIXsfc: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/fix/fix_sfc_climo | ||
| FIXshp: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/NaturalEarth | ||
| EXTRN_MDL_DATA_STORES: aws | ||
| data: | ||
| ics_lbcs: | ||
| FV3GFS: | ||
| nemsio: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/FV3GFS/nemsio/${yyyymmdd}${hh} | ||
| grib2: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/FV3GFS/grib2/${yyyymmdd}${hh} | ||
| netcdf: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/FV3GFS/netcdf/${yyyymmdd}${hh} | ||
| RAP: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/RAP/${yyyymmdd}${hh} | ||
| HRRR: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/HRRR/${yyyymmdd}${hh} | ||
| RAP: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/RAP/${yyyymmdd}${hh} | ||
| GSMGFS: /lustre/f2/dev/role.epic/contrib/UFS_SRW_data/develop/input_model_data/GSMGFS/${yyyymmdd}${hh} | ||
| rocoto: | ||
| tasks: | ||
| metatask_run_ensemble: | ||
| task_run_fcst_mem#mem#: | ||
| cores: '{{ task_run_fcst.PE_MEMBER01 // 1 }}' | ||
| native: '--cpus-per-task {{ task_run_fcst.OMP_NUM_THREADS_RUN_FCST|int }} --exclusive {{ platform.SCHED_NATIVE_CMD }}' | ||
| nodes: | ||
| nnodes: | ||
| nodesize: | ||
| ppn: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.