forked from ufs-community/ufs-srweather-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[develop] Replace hpc-stack with spack-stack (ufs-community#913)
* Replaced use of hpc-stack with spack-stack version 1.4.1 for Gaea, Hera, Hercules, Jet, and Orion. * In modulefiles directory, build* and wflow* scripts are updated. Also removed srw_common_spack.lua and all *.lua files are calling same srw_common.lua file. * HPC-Stack will still be used for Derecho, Gaea C5, MacOS, and Linux. --------- Co-authored-by: Natalie Perlin <[email protected]> Co-authored-by: EdwardSnyder-NOAA <[email protected]>
- Loading branch information
1 parent
aeb6de6
commit 67b8207
Showing
22 changed files
with
258 additions
and
133 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
load_any("jasper/2.0.25","jasper/2.0.32") | ||
load_any("zlib/1.2.11","zlib/1.2.13") | ||
load("libpng/1.6.37") | ||
load_any("png/1.6.37","libpng/1.6.37") | ||
|
||
load_any("netcdf/4.9.2", "netcdf-c/4.9.2") | ||
load_any("netcdf/4.9.2", "netcdf-fortran/4.6.0") | ||
load_any("pio/2.5.10", "parallelio/2.5.9") | ||
load_any("netcdf/4.9.2","netcdf-c/4.9.2") | ||
load_any("netcdf/4.9.2","netcdf-fortran/4.6.0") | ||
load_any("pio/2.5.10","parallelio/2.5.9","parallelio/2.5.10") | ||
load("esmf/8.4.2") | ||
load("fms/2023.01") | ||
|
||
load("bacio/2.4.1") | ||
load("g2/3.4.5") | ||
load("crtm/2.4.0") | ||
load("g2/3.4.5") | ||
load("g2tmpl/1.10.2") | ||
load("ip/3.3.3") | ||
load("sp/2.3.3") | ||
load("w3emc/2.9.2") | ||
|
||
load_any("gftl-shared/v1.5.0", "gftl-shared/1.5.0") | ||
load_any("yafyaml/v0.5.1", "yafyaml/0.5.1") | ||
load_any("gftl-shared/v1.5.0","gftl-shared/1.5.0") | ||
load_any("yafyaml/v0.5.1","yafyaml/0.5.1") | ||
load("mapl/2.35.2-esmf-8.4.2") | ||
|
||
load("nemsio/2.5.4") | ||
load_any("nemsio/2.5.2","nemsio/2.5.4") | ||
load("sfcio/1.4.1") | ||
load("sigio/2.3.2") | ||
load("w3nco/2.4.1") | ||
load_any("wrf_io/1.2.0","wrf-io/1.2.0") | ||
|
||
load("wgrib2/2.0.8") | ||
load_any("wgrib2/2.0.8","wgrib2/3.1.1") |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,25 @@ | ||
--[[ | ||
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")) | ||
local met_ver = (os.getenv("met_ver") or "10.1.2") | ||
local metplus_ver = (os.getenv("metplus_ver") or "4.1.3") | ||
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("python_srw") |
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 |
---|---|---|
@@ -1,6 +1,25 @@ | ||
--[[ | ||
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")) | ||
local met_ver = (os.getenv("met_ver") or "10.1.2") | ||
local metplus_ver = (os.getenv("metplus_ver") or "4.1.3") | ||
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("python_srw") |
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 |
---|---|---|
@@ -1,6 +1,25 @@ | ||
--[[ | ||
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")) | ||
local met_ver = (os.getenv("met_ver") or "10.1.1") | ||
local metplus_ver = (os.getenv("metplus_ver") or "4.1.1") | ||
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("python_srw") |
Oops, something went wrong.