-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add modulefile for Dogwood/Cactus (#1073)
While we are technically not supposed to build our own CRTM or FMS, we are asking for forgiveness and forging ahead. This PR should allow GDASApp to compile on WCOSS2 (Dogwood and Cactus) after a minor issue is resolved. That issue being a compile issue in IODA that Ron is already aware of and has a fix that works (JCSDA-internal/ioda@develop...bugfix/read_script_convert_fix). --------- Co-authored-by: cory martin <[email protected]> Co-authored-by: cory martin <[email protected]> Co-authored-by: cory martin <[email protected]>
- Loading branch information
1 parent
1b07517
commit a8daf6a
Showing
3 changed files
with
53 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
help([[ | ||
Load environment for running the GDAS application with Intel compilers and MPI. | ||
]]) | ||
|
||
local pkgName = myModuleName() | ||
local pkgVersion = myModuleVersion() | ||
local pkgNameVer = myModuleFullName() | ||
|
||
prepend_path("MODULEPATH", "/apps/dev/lmodules/core") | ||
|
||
load("PrgEnv-intel/8.2.0") | ||
load("cmake/3.20.2") | ||
load("craype") | ||
load("cray-pals") | ||
load("git/2.29.0") | ||
load("intel/19.1.3.304") | ||
load("cray-mpich/8.1.12") | ||
load("hdf5/1.12.2") | ||
load("netcdf/4.7.4") | ||
load("udunits/2.2.28") | ||
load("eigen/3.4.0") | ||
load("boost/1.79.0") | ||
load("gsl-lite/v0.40.0") | ||
load("sp/2.4.0") | ||
load("python/3.8.6") | ||
load("ecbuild/3.7.0") | ||
load("qhull/2020.2") | ||
load("eckit/1.24.4") | ||
load("fckit/0.11.0") | ||
load("atlas/0.35.0") | ||
load("nccmp") | ||
|
||
-- hack for pybind11 | ||
setenv("pybind11_ROOT", "/apps/spack/python/3.8.6/intel/19.1.3.304/pjn2nzkjvqgmjw4hmyz43v5x4jbxjzpk/lib/python3.8/site-packages/pybind11/share/cmake/pybind11") | ||
|
||
-- hack for wxflow | ||
--prepend_path("PYTHONPATH", "/scratch1/NCEPDEV/da/python/gdasapp/wxflow/20240307/src") | ||
|
||
local mpiexec = '/pe/intel/compilers_and_libraries_2020.4.304/linux/mpi/intel64/bin/mpirun' | ||
local mpinproc = '-n' | ||
setenv('MPIEXEC_EXEC', mpiexec) | ||
setenv('MPIEXEC_NPROC', mpinproc) | ||
|
||
setenv("CRTM_FIX","/lfs/h2/emc/da/noscrub/emc.da/GDASApp/fix/crtm/2.4.0") | ||
setenv("GDASAPP_TESTDATA","/lfs/h2/emc/da/noscrub/emc.da/GDASApp/data") | ||
setenv("GDASAPP_UNIT_TEST_DATA_PATH", "/lfs/h2/emc/da/noscrub/emc.da/GDASApp/data/test") | ||
|
||
whatis("Name: ".. pkgName) | ||
whatis("Version: ".. pkgVersion) | ||
whatis("Category: GDASApp") | ||
whatis("Description: Load all libraries needed for GDASApp") |
Submodule ioda
updated
50 files