-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- All `#ifdef OPENMP` are replaced with `#ifdef _OPENMP` to follow standard compiler macro for OpenMP. - CCPP code generation is moved inside of `FV3/`. This will be redundant when the Data Atmosphere component comes in. Updates to the python script was performed to remove the hard-wired `FV3/` path name in the file. - `cmake/GNU.cmake` and `cmake/Intel.cmake` hard-wire global compiler definitions with `add_definitions`. These are now applied with `target_compile_definitions`. - CMakeLists.txt is passed through cmake-norm checker. - `INSTALL_INTERFACE` is added, so that this component can be installed and linked in downstream applications e.g. JEDI. This may be incomplete, so will need more work.
- Loading branch information
Showing
14 changed files
with
374 additions
and
445 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
coupled*.mk | ||
rt.conf.single | ||
*.swp | ||
*~ | ||
|
||
build*/ | ||
install*/ | ||
|
||
ufs_weather_model | ||
NEMS.exe | ||
*.exe | ||
|
||
tests/fv3_*.exe | ||
tests/modules.fv3_* | ||
tests/ecflow_run/ | ||
tests/log_*/ | ||
tests/lock/ | ||
tests/Compile_*.log |
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,20 +1,20 @@ | ||
[submodule "FV3"] | ||
path = FV3 | ||
url = https://github.com/NOAA-EMC/fv3atm | ||
branch = develop | ||
path = FV3 | ||
url = https://github.com/NOAA-EMC/fv3atm | ||
branch = develop | ||
[submodule "NEMS"] | ||
path = NEMS | ||
url = https://github.com/NOAA-EMC/NEMS | ||
branch = develop | ||
path = NEMS | ||
url = https://github.com/NOAA-EMC/NEMS | ||
branch = develop | ||
[submodule "FMS"] | ||
path = FMS | ||
url = https://github.com/NOAA-GFDL/FMS | ||
branch = master | ||
path = FMS | ||
url = https://github.com/NOAA-GFDL/FMS | ||
branch = master | ||
[submodule "WW3"] | ||
path = WW3 | ||
url = https://github.com/NOAA-EMC/WW3 | ||
branch = develop | ||
path = WW3 | ||
url = https://github.com/NOAA-EMC/WW3 | ||
branch = develop | ||
[submodule "stochastic_physics"] | ||
path = stochastic_physics | ||
url = https://github.com/noaa-psd/stochastic_physics | ||
branch = master | ||
path = stochastic_physics | ||
url = https://github.com/noaa-psd/stochastic_physics | ||
branch = master |
Large diffs are not rendered by default.
Oops, something went wrong.
Submodule FV3
updated
11 files
+151 −95 | CMakeLists.txt | |
+25 −25 | atmos_model.F90 | |
+120 −120 | ccpp/config/ccpp_prebuild_config.py | |
+3 −3 | ccpp/driver/CCPP_driver.F90 | |
+34 −21 | gfsphysics/CMakeLists.txt | |
+2 −2 | gfsphysics/GFS_layer/GFS_driver.F90 | |
+7 −8 | gfsphysics/physics/GFS_debug.F90 | |
+19 −12 | io/CMakeLists.txt | |
+19 −17 | ipd/CMakeLists.txt | |
+11 −14 | stochastic_physics/CMakeLists.txt | |
+28 −28 | stochastic_physics/stochastic_physics_wrapper.F90 |
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
Submodule stochastic_physics
updated
from ffdd19 to 6eac84
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
Oops, something went wrong.