-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[develop] Port SRW to Gaea C6 (#1163)
Enable SRW for new machine Gaea-C6. UFS_SRW_data copied to /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data location. --------- Co-authored-by: michael.lueken <[email protected]>
- Loading branch information
1 parent
a6bdef7
commit fb6a8b2
Showing
37 changed files
with
241 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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,35 @@ | ||
help([[ | ||
This module loads libraries for building the UFS SRW App on | ||
the NOAA RDHPC machine Gaea C6 using Intel-2023.2.0 | ||
]]) | ||
|
||
whatis([===[Loads libraries needed for building the UFS SRW App on Gaea C6 ]===]) | ||
|
||
prepend_path("MODULEPATH","/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") | ||
stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" | ||
load(pathJoin("stack-intel", stack_intel_ver)) | ||
|
||
stack_mpich_ver=os.getenv("stack_mpich_ver") or "8.1.29" | ||
load(pathJoin("stack-cray-mpich", stack_mpich_ver)) | ||
|
||
stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" | ||
load(pathJoin("stack-python", stack_python_ver)) | ||
|
||
cmake_ver=os.getenv("cmake_ver") or "3.23.1" | ||
load(pathJoin("cmake", cmake_ver)) | ||
|
||
load("srw_common") | ||
|
||
unload("darshan-runtime/3.4.4") | ||
unload("cray-pmi/6.1.13") | ||
|
||
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-c6.intel") |
This file contains 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 @@ | ||
load("run_vx.local") |
This file contains 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 @@ | ||
unload("python") | ||
load("conda") | ||
|
||
setenv("SRW_GRAPHICS_ENV", "srw_graphics") |
This file contains 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,8 @@ | ||
load("darshan-runtime/3.4.4") | ||
unload("python") | ||
load("conda") | ||
|
||
setenv("SRW_ENV", "srw_app") | ||
setenv("LD_PRELOAD", "/usr/lib64/libstdc++.so.6") | ||
setenv("FI_VERBS_PREFER_XRC", "0") | ||
|
This file contains 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,26 @@ | ||
--[[ | ||
Compiler-specific modules are used for met and metplus libraries | ||
--]] | ||
local met_ver = (os.getenv("met_ver") or "11.1.0") | ||
local metplus_ver = (os.getenv("metplus_ver") or "5.1.0") | ||
if (mode() == "load") then | ||
load(pathJoin("met", met_ver)) | ||
load(pathJoin("metplus",metplus_ver)) | ||
end | ||
local base_met = os.getenv("met_ROOT") or os.getenv("MET_ROOT") | ||
local base_metplus = os.getenv("metplus_ROOT") or os.getenv("METPLUS_ROOT") | ||
|
||
setenv("MET_INSTALL_DIR", base_met) | ||
setenv("MET_BIN_EXEC", pathJoin(base_met,"bin")) | ||
setenv("MET_BASE", pathJoin(base_met,"share/met")) | ||
setenv("MET_VERSION", met_ver) | ||
setenv("METPLUS_VERSION", metplus_ver) | ||
setenv("METPLUS_ROOT", base_metplus) | ||
setenv("METPLUS_PATH", base_metplus) | ||
|
||
if (mode() == "unload") then | ||
unload(pathJoin("met", met_ver)) | ||
unload(pathJoin("metplus",metplus_ver)) | ||
end | ||
load("conda") | ||
setenv("SRW_ENV", "srw_app") |
This file contains 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 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,19 @@ | ||
help([[ | ||
This module loads python environement for running the UFS SRW App on | ||
the NOAA RDHPC machine Gaea C6 | ||
]]) | ||
|
||
whatis([===[Loads libraries needed for running the UFS SRW App on gaea c6 ]===]) | ||
|
||
unload("python") | ||
prepend_path("MODULEPATH","/ncrc/proj/epic/rocoto/modulefiles/") | ||
load("rocoto") | ||
load("conda") | ||
|
||
pushenv("MKLROOT", "/opt/intel/oneapi/mkl/2023.2.0/") | ||
|
||
if mode() == "load" then | ||
LmodMsgRaw([===[Please do the following to activate conda: | ||
> conda activate srw_app | ||
]===]) | ||
end |
This file contains 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 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 @@ | ||
comprehensive.orion |
This file contains 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 | ||
2020_CAPE | ||
2020_easter_storm |
This file contains 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 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 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,56 @@ | ||
platform: | ||
WORKFLOW_MANAGER: rocoto | ||
NCORES_PER_NODE: 128 | ||
SCHED: slurm | ||
WE2E_TEST_DATA: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop | ||
TEST_CCPA_OBS_DIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/obs_data/ccpa/proc | ||
TEST_MRMS_OBS_DIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/obs_data/mrms/proc | ||
TEST_NDAS_OBS_DIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/obs_data/ndas/proc | ||
TEST_NOHRSC_OBS_DIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/obs_data/nohrsc/proc | ||
DOMAIN_PREGEN_BASEDIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/FV3LAM_pregen | ||
QUEUE_DEFAULT: normal | ||
QUEUE_FCST: normal | ||
QUEUE_HPSS: normal | ||
REMOVE_MEMORY: True | ||
PARTITION_HPSS: eslogin_c6 | ||
RUN_CMD_FCST: srun --export=ALL | ||
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=c6 --partition=batch --export=NONE | ||
SCHED_NATIVE_CMD_HPSS: --clusters=es --partition=eslogin_c6 --export=NONE | ||
PRE_TASK_CMDS: '{ ulimit -s unlimited; ulimit -a; }' | ||
TEST_EXTRN_MDL_SOURCE_BASEDIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data | ||
TEST_PREGEN_BASEDIR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/FV3LAM_pregen | ||
TEST_ALT_EXTRN_MDL_SYSBASEDIR_ICS: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/dummy_FV3GFS_sys_dir | ||
TEST_ALT_EXTRN_MDL_SYSBASEDIR_LBCS: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/dummy_FV3GFS_sys_dir | ||
TEST_VX_FCST_INPUT_BASEDIR: '{{ "/gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/output_data/fcst_" }}{{ "ens" if (global.NUM_ENS_MEMBERS > 0) else "det" }}{{ "/{{workflow.PREDEF_GRID_NAME}}" }}{% raw %}{% endraw %}' | ||
FIXaer: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/fix/fix_aer | ||
FIXgsi: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/fix/fix_gsi | ||
FIXgsm: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/fix/fix_am | ||
FIXlut: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/fix/fix_lut | ||
FIXorg: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/fix/fix_orog | ||
FIXsfc: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/fix/fix_sfc_climo | ||
FIXshp: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/NaturalEarth | ||
EXTRN_MDL_DATA_STORES: aws | ||
data: | ||
ics_lbcs: | ||
FV3GFS: | ||
nemsio: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/FV3GFS/nemsio/${yyyymmdd}${hh} | ||
grib2: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/FV3GFS/grib2/${yyyymmdd}${hh} | ||
netcdf: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/FV3GFS/netcdf/${yyyymmdd}${hh} | ||
RAP: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/RAP/${yyyymmdd}${hh} | ||
HRRR: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/HRRR/${yyyymmdd}${hh} | ||
RAP: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/RAP/${yyyymmdd}${hh} | ||
GSMGFS: /gpfs/f6/bil-fire8/world-shared/UFS_SRW_data/develop/input_model_data/GSMGFS/${yyyymmdd}${hh} | ||
rocoto: | ||
tasks: | ||
metatask_run_ensemble: | ||
task_run_fcst_mem#mem#: | ||
cores: | ||
native: '--cpus-per-task {{ task_run_fcst.OMP_NUM_THREADS_RUN_FCST|int }} --exclusive {{ platform.SCHED_NATIVE_CMD }}' | ||
nodes: '{{ task_run_fcst.NNODES_RUN_FCST // 1 }}:ppn={{ task_run_fcst.PPN_RUN_FCST // 1 }}' | ||
nnodes: | ||
nodesize: | ||
ppn: |
Oops, something went wrong.