-
Notifications
You must be signed in to change notification settings - Fork 211
JET update to enable fcst only run: #384
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
Changes from all commits
b19ccea
8a65b89
8791f95
59df4e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,27 @@ | ||
| #%Module###################################################################### | ||
| ## | ||
| ## nems prerequisites | ||
| ## FV3GFS prerequisites | ||
| ## | ||
|
|
||
| proc ModulesHelp {} { | ||
| puts stderr "The prerequisites for compiling or running FV3 on Jet. " | ||
| } | ||
| # Load hpc-stack | ||
| module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack | ||
| module load hpc/1.1.0 | ||
|
|
||
| module load newdefaults intel/15.0.3.187 impi/5.1.3.181 szip hdf5 netcdf4/4.2.1.1 | ||
| # Load intel compiler and mpi | ||
| module load hpc-intel/18.0.5.274 | ||
| module load hpc-impi/2018.4.274 | ||
|
|
||
| module use /lfs3/projects/hfv3gfs/nwprod/lib/modulefiles | ||
| module load bacio/v2.0.2 | ||
| module load sp/v2.0.2 | ||
| module load ip/v2.0.0 | ||
| module load w3nco/v2.0.6 | ||
| module load w3emc/v2.2.0 | ||
| module load nemsio/v2.2.2 | ||
|
|
||
| #set NCEPLIBS $::env(NCEPLIBS) | ||
| #module use $NCEPLIBS/modulefiles | ||
| #module load esmf/7.1.0r_impi | ||
|
|
||
| module use /lfs3/projects/hwrf-vd/soft/modulefiles | ||
| module load prod_util | ||
| module load grib_util | ||
| module load wgrib2/2.0.8 | ||
| module load hpss | ||
|
|
||
| # mpiserial on Jet includes a cfp wrapper | ||
| module load mpiserial | ||
|
|
||
| module load nco/4.9.1 | ||
| module load cdo/1.9.5 | ||
| module load gempak/7.4.2 | ||
|
|
||
| module load prod_util/v1.0.18 | ||
| module load grib_util/v1.1.1 | ||
| module load g2tmpl/1.6.0 | ||
| module load crtm/2.3.0 | ||
| module load esmflocal/8_0_1 | ||
| module load netcdfp/4.7.4 | ||
|
|
||
| # rocoto | ||
| module load rocoto | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| #%Module##################################################### | ||
| ## Workflow Utilities - hera | ||
| ############################################################# | ||
|
|
||
| # Load cmake | ||
| module load cmake/3.16.1 | ||
|
|
||
| # Load hpc-stack | ||
| module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack | ||
| module load hpc/1.1.0 | ||
|
|
||
| # Load intel compiler and mpi | ||
| module load hpc-intel/18.0.5.274 | ||
| module load hpc-impi/2018.4.274 | ||
|
|
||
| module load jasper/2.0.25 | ||
| module load zlib/1.2.11 | ||
| module load png/1.6.35 | ||
|
|
||
| module load bacio/2.4.1 | ||
| module load w3nco/2.4.1 | ||
| module load w3emc/2.7.3 | ||
| module load sp/2.3.3 | ||
| module load ip/3.3.3 | ||
| module load nemsio/2.5.2 | ||
| module load nemsiogfs/2.5.3 | ||
| module load sigio/2.3.2 | ||
| module load g2/3.4.1 | ||
| module load bufr/11.4.0 | ||
|
|
||
| module load hdf5/1.10.6 | ||
| module load netcdf/4.7.4 | ||
|
Comment on lines
+31
to
+32
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to load these after png.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am testing this item on Jet now. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,12 @@ if [ ! -d "./mkgfsawps.fd" ]; then | |
| exit | ||
| fi | ||
|
|
||
| if [ $target = jet ]; then | ||
| echo " GFS_UTIL does not support JET " | ||
| echo " " | ||
| exit | ||
| fi | ||
|
|
||
|
Comment on lines
+17
to
+22
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. don't need this block. please remove. |
||
| echo "" | ||
| echo " Building ... Executables for GFS_UTILITIES " | ||
| echo "" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,12 @@ set -eux | |
| source ./machine-setup.sh > /dev/null 2>&1 | ||
| cwd=`pwd` | ||
|
|
||
| if [ $target = jet ]; then | ||
| echo " GLDAS does not support JET " | ||
| echo " " | ||
| exit | ||
| fi | ||
|
|
||
|
Comment on lines
+7
to
+12
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove. |
||
| USE_PREINST_LIBS=${USE_PREINST_LIBS:-"true"} | ||
| if [ $USE_PREINST_LIBS = true ]; then | ||
| export MOD_PATH=/scratch3/NCEPDEV/nwprod/lib/modulefiles | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,13 @@ finalexecdir=$( pwd -P )/../exec | |
|
|
||
| set +x | ||
| source ./machine-setup.sh > /dev/null 2>&1 | ||
|
|
||
| if [ $target = jet ]; then | ||
| echo " WW3 does not support JET " | ||
| echo " " | ||
| exit | ||
| fi | ||
|
|
||
|
Comment on lines
+13
to
+19
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please remove |
||
| source ../modulefiles/modulefile.ww3.$target | ||
| set -x | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make sure these are built with hpc-stack.
I know for a fact hpc-stack does not build netcdfp or esmflocal modules for these
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am testing this item on Jet now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some of these are still not from hpc-stack. So if you are testing with these modules, then they are likely wrong.