forked from ufs-community/ufs-weather-model
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from grantfirl/ufs-dev-PR53
UFS-dev PR#53
- Loading branch information
Showing
116 changed files
with
10,095 additions
and
9,418 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
Submodule CMakeModules
updated
6 files
+180 −0 | Modules/FindGPTL.cmake | |
+25 −4 | Modules/FindNetCDF.cmake | |
+10 −2 | Modules/FindPIO.cmake | |
+174 −0 | Modules/FindPnetCDF.cmake | |
+32 −0 | Modules/FindSphinx.cmake | |
+47 −0 | Modules/Findudunits.cmake |
Submodule FV3
updated
12 files
+2 −2 | atmos_model.F90 | |
+13 −0 | ccpp/data/GFS_typedefs.F90 | |
+26 −5 | ccpp/data/GFS_typedefs.meta | |
+1 −1 | ccpp/framework | |
+1 −1 | ccpp/physics | |
+5 −39 | module_fcst_grid_comp.F90 | |
+0 −1 | module_fv3_config.F90 | |
+4 −0 | moving_nest/fv_moving_nest.F90 | |
+4 −0 | moving_nest/fv_moving_nest_main.F90 | |
+4 −0 | moving_nest/fv_moving_nest_physics.F90 | |
+4 −0 | moving_nest/fv_moving_nest_utils.F90 | |
+4 −0 | moving_nest/fv_tracker.F90 |
Submodule MOM6
updated
3 files
+5 −11 | config_src/drivers/nuopc_cap/mom_cap.F90 | |
+1 −1 | config_src/drivers/nuopc_cap/mom_cap_methods.F90 | |
+0 −1 | config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90 |
Submodule WW3
updated
80 files
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,3 +1,7 @@ | ||
set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) | ||
set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) | ||
set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) | ||
|
||
if(FASTER) | ||
set(DISABLE_FMA ON CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) | ||
endif() |
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,3 +1,7 @@ | ||
set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) | ||
set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) | ||
set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) | ||
|
||
if(FASTER) | ||
set(DISABLE_FMA ON CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) | ||
endif() |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
help([[ | ||
This module loads libraries required for building and running UFS Weather Model | ||
on the NOAA RDHPC machine Gaea using Intel-2022.1.2 | ||
]]) | ||
|
||
whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) | ||
|
||
prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") | ||
load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) | ||
|
||
load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) | ||
|
||
prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") | ||
load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) | ||
load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) | ||
load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) | ||
load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) | ||
load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) | ||
load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) | ||
|
||
-- needed for WW3 build | ||
load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) | ||
-- Needed at runtime: | ||
load("alps") | ||
load("rocoto") | ||
|
||
load("ufs_common") | ||
|
||
setenv("CC","cc") | ||
setenv("FC","ftn") | ||
setenv("CXX","CC") | ||
setenv("CMAKE_C_COMPILER","cc") | ||
setenv("CMAKE_CXX_COMPILER","CC") | ||
setenv("CMAKE_Fortran_COMPILER","ftn") | ||
setenv("CMAKE_Platform","gaea.intel") |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
help([[ | ||
This module loads libraries required for building and running UFS Weather Model | ||
on the NOAA RDHPC machine Gaea using Intel-2022.1.2 | ||
]]) | ||
|
||
whatis([===[Loads libraries needed for building the UFS Weather Model and debug on Gaea ]===]) | ||
|
||
prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") | ||
load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) | ||
|
||
load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) | ||
|
||
prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") | ||
load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) | ||
load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) | ||
load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) | ||
load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) | ||
load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) | ||
load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) | ||
|
||
-- needed for WW3 build | ||
load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) | ||
-- Needed at runtime: | ||
load("alps") | ||
load("rocoto") | ||
|
||
load("ufs_common_debug") | ||
|
||
setenv("CC","cc") | ||
setenv("FC","ftn") | ||
setenv("CXX","CC") | ||
setenv("CMAKE_C_COMPILER","cc") | ||
setenv("CMAKE_CXX_COMPILER","CC") | ||
setenv("CMAKE_Fortran_COMPILER","ftn") | ||
setenv("CMAKE_Platform","gaea.intel") |
Oops, something went wrong.