-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
167 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
help([[ | ||
Load environment for running EVA. | ||
]]) | ||
|
||
local pkgName = myModuleName() | ||
local pkgVersion = myModuleVersion() | ||
local pkgNameVer = myModuleFullName() | ||
|
||
conflict(pkgName) | ||
|
||
prepend_path("MODULEPATH", '/gpfs/f5/gsl-glo/world-shared/gge/miniconda3/modulefiles') | ||
|
||
load("miniconda3/4.6.14") | ||
load("eva/1.0.0") | ||
|
||
whatis("Name: ".. pkgName) | ||
whatis("Version: ".. pkgVersion) | ||
whatis("Category: EVA") | ||
whatis("Description: Load all libraries needed for EVA") |
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([[ | ||
Load environment for running EVA. | ||
]]) | ||
|
||
local pkgName = myModuleName() | ||
local pkgVersion = myModuleVersion() | ||
local pkgNameVer = myModuleFullName() | ||
|
||
conflict(pkgName) | ||
|
||
prepend_path("MODULEPATH", '/gpfs/f6/bil-fire10-oar/world-shared/gge/miniconda3/modulefiles') | ||
|
||
load("miniconda3/4.6.14") | ||
load("eva/1.0.0") | ||
|
||
whatis("Name: ".. pkgName) | ||
whatis("Version: ".. pkgVersion) | ||
whatis("Category: EVA") | ||
whatis("Description: Load all libraries needed for EVA") |
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,82 @@ | ||
help([[ | ||
Load environment for running the RDAS application with Intel compilers and MPI. | ||
]]) | ||
|
||
local pkgName = myModuleName() | ||
local pkgVersion = myModuleVersion() | ||
local pkgNameVer = myModuleFullName() | ||
|
||
prepend_path("MODULEPATH", '/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core') | ||
|
||
-- below two lines get us access to the spack-stack modules | ||
load("stack-intel/2023.2.0") | ||
load("stack-cray-mpich/8.1.29") | ||
-- JCSDA has 'jedi-fv3-env/unified-dev', but we should load these manually as needed | ||
load("cmake/3.23.1") | ||
load("gettext/0.20.2") | ||
--load("libunistring/1.1") | ||
--load("libidn2/2.3.4") | ||
load("pcre2/10.42") | ||
load("curl/8.4.0") | ||
load("zlib/1.2.13") | ||
load("git/2.42.0") | ||
load("pkg-config/0.29.2") | ||
load("hdf5/1.14.0") | ||
load("parallel-netcdf/1.12.2") | ||
load("netcdf-c/4.9.2") | ||
load("nccmp/1.9.0.1") | ||
load("netcdf-fortran/4.6.1") | ||
load("nco/5.0.6") | ||
load("parallelio/2.5.10") | ||
load("wget/1.20.3") | ||
load("boost/1.83.0") | ||
load("bufr/12.0.1") | ||
load("git-lfs/2.11.0") | ||
load("ecbuild/3.7.2") | ||
load("openjpeg/2.3.1") | ||
load("eccodes/2.32.0") | ||
load("eigen/3.4.0") | ||
load("openblas/0.3.24") | ||
load("eckit/1.24.5") | ||
load("fftw/3.3.10") | ||
load("fckit/0.11.0") | ||
load("fiat/1.2.0") | ||
--load("ectrans/1.2.0") | ||
load("atlas/0.35.1") | ||
load("sp/2.5.0") | ||
load("gsl-lite/0.37.0") | ||
load("libjpeg/2.1.0") | ||
load("krb5/1.20.1") | ||
load("libtirpc/1.3.3") | ||
load("hdf/4.2.15") | ||
load("jedi-cmake/1.4.0") | ||
load("libpng/1.6.37") | ||
load("udunits/2.2.28") | ||
load("ncview/2.1.9") | ||
load("netcdf-cxx4/4.3.1") | ||
load("json/3.10.5") | ||
--load("crtm/v2.4_jedi") | ||
load("prod_util/2.1.1") | ||
load("fms/2023.04") | ||
|
||
load("py-jinja2/3.0.3") | ||
load("py-netcdf4/1.5.8") | ||
load("py-pybind11/2.11.0") | ||
load("py-pycodestyle/2.11.0") | ||
load("py-pyyaml/6.0") | ||
load("py-scipy/1.11.3") | ||
load("py-xarray/2023.7.0") | ||
|
||
setenv("CC","cc") | ||
setenv("FC","ftn") | ||
setenv("CXX","CC") | ||
|
||
local mpiexec = '/usr/bin/srun' | ||
local mpinproc = '-n' | ||
setenv('MPIEXEC_EXEC', mpiexec) | ||
setenv('MPIEXEC_NPROC', mpinproc) | ||
|
||
whatis("Name: ".. pkgName) | ||
whatis("Version: ".. pkgVersion) | ||
whatis("Category: RDASApp") | ||
whatis("Description: Load all libraries needed for RDASApp") |
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