Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -76,39 +76,39 @@ fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git
[submodule "cime"]
path = cime
url = https://github.com/ESMCI/cime
fxtag = cime6.1.176
fxtag = cime6.2.2
fxrequired = ToplevelRequired
# Standard Fork to compare to with "git fleximod test" to ensure personal forks aren't committed
fxDONOTUSEurl = https://github.com/ESMCI/cime

[submodule "cmeps"]
path = components/cmeps
url = https://github.com/ESCOMP/CMEPS.git
fxtag = cmeps1.1.44
fxtag = cmeps1.1.48
fxrequired = ToplevelRequired
# Standard Fork to compare to with "git fleximod test" to ensure personal forks aren't committed
fxDONOTUSEurl = https://github.com/ESCOMP/CMEPS.git

[submodule "cdeps"]
path = components/cdeps
url = https://github.com/ESCOMP/CDEPS.git
fxtag = cdeps1.0.93
fxtag = cdeps1.0.96
fxrequired = ToplevelRequired
# Standard Fork to compare to with "git fleximod test" to ensure personal forks aren't committed
fxDONOTUSEurl = https://github.com/ESCOMP/CDEPS.git

[submodule "share"]
path = share
url = https://github.com/ESCOMP/CESM_share
fxtag = share1.1.19
fxtag = share1.1.20
fxrequired = ToplevelRequired
# Standard Fork to compare to with "git fleximod test" to ensure personal forks aren't committed
fxDONOTUSEurl = https://github.com/ESCOMP/CESM_share

[submodule "parallelio"]
path = libraries/parallelio
url = https://github.com/NCAR/ParallelIO
fxtag = pio2_6_8
fxtag = pio2_7_0
fxrequired = ToplevelRequired
# Standard Fork to compare to with "git fleximod test" to ensure personal forks aren't committed
fxDONOTUSEurl = https://github.com/NCAR/ParallelIO
Expand Down
2 changes: 1 addition & 1 deletion components/cmeps
Submodule cmeps updated 41 files
+4 −6 .github/workflows/srt.yml
+8 −0 cesm/driver/esm.F90
+17 −2 cesm/share_wrappers/wtracers_mod.F90
+43 −0 cime_config/buildnml
+26 −1 cime_config/config_component_cesm.xml
+64 −13 cime_config/namelist_definition_drv.xml
+11 −0 cime_config/testdefs/testlist_drv.xml
+2 −0 cime_config/testdefs/testmods_dirs/drv/glc_avg_frequently/README
+1 −0 cime_config/testdefs/testmods_dirs/drv/glc_avg_frequently/shell_commands
+3 −0 cime_config/testdefs/testmods_dirs/drv/water_tracers/README
+1 −0 cime_config/testdefs/testmods_dirs/drv/water_tracers/shell_commands
+2 −0 cime_config/testdefs/testmods_dirs/drv/water_tracers/user_nl_cpl
+42 −15 med_test_comps/xatm/src/atm_comp_nuopc.F90
+94 −16 med_test_comps/xglc/src/glc_comp_nuopc.F90
+47 −15 med_test_comps/xice/src/ice_comp_nuopc.F90
+117 −24 med_test_comps/xlnd/src/lnd_comp_nuopc.F90
+52 −15 med_test_comps/xocn/src/ocn_comp_nuopc.F90
+57 −16 med_test_comps/xrof/src/rof_comp_nuopc.F90
+259 −7 med_test_comps/xshare/dead_nuopc_mod.F90
+14 −18 med_test_comps/xwav/src/wav_comp_nuopc.F90
+595 −381 mediator/esmFldsExchange_cesm_mod.F90
+161 −16 mediator/fd_cesm.yaml
+14 −1 mediator/med.F90
+10 −6 mediator/med_field_info_mod.F90
+118 −117 mediator/med_io_mod.F90
+124 −3 mediator/med_methods_mod.F90
+6 −0 mediator/med_phases_post_atm_mod.F90
+8 −0 mediator/med_phases_post_glc_mod.F90
+6 −0 mediator/med_phases_post_ice_mod.F90
+6 −0 mediator/med_phases_post_lnd_mod.F90
+6 −0 mediator/med_phases_post_ocn_mod.F90
+6 −0 mediator/med_phases_post_rof_mod.F90
+6 −0 mediator/med_phases_post_wav_mod.F90
+6 −0 mediator/med_phases_prep_atm_mod.F90
+294 −108 mediator/med_phases_prep_glc_mod.F90
+6 −0 mediator/med_phases_prep_ice_mod.F90
+6 −0 mediator/med_phases_prep_lnd_mod.F90
+11 −2 mediator/med_phases_prep_ocn_mod.F90
+6 −0 mediator/med_phases_prep_rof_mod.F90
+6 −0 mediator/med_phases_prep_wav_mod.F90
+97 −1 ufs/wtracers_mod.F90
2 changes: 1 addition & 1 deletion libraries/parallelio
Submodule parallelio updated 45 files
+1 −0 .github/workflows/netcdf_hdf5_no_pnetcdf_ncint_mpich.yml
+1 −0 .github/workflows/netcdf_hdf5_pnetcdf_ncint_mpich_asan.yml
+1 −0 .github/workflows/netcdf_pnetcdf_openmpi.yml
+226 −110 CMakeLists.txt
+0 −143 cmake/FindNetCDF.cmake
+0 −68 cmake/FindPnetCDF.cmake
+11 −7 cmake/LibFind.cmake
+2 −0 cmake_config.h.in
+25 −5 configure.ac
+18 −17 doc/CMakeLists.txt
+5 −4 examples/CMakeLists.txt
+20 −19 examples/basic/CMakeLists.txt
+23 −20 examples/c/CMakeLists.txt
+6 −5 examples/cxx/CMakeLists.txt
+23 −10 examples/f03/CMakeLists.txt
+1 −0 libpio.settings.in
+29 −24 src/CMakeLists.txt
+32 −14 src/clib/CMakeLists.txt
+3 −0 src/clib/Makefile.am
+187 −159 src/clib/pio.h
+27 −6 src/clib/pio_darray.c
+7 −1 src/clib/pio_darray_int.c
+11 −0 src/clib/pio_file.c
+1,244 −0 src/clib/pio_gdal.c
+5 −0 src/clib/pio_internal.h
+2 −0 src/clib/pio_lists.c
+4 −1 src/clib/pioc_support.c
+142 −116 src/flib/CMakeLists.txt
+92 −74 src/gptl/CMakeLists.txt
+18 −16 tests/CMakeLists.txt
+6 −1 tests/cperf/CMakeLists.txt
+36 −9 tests/cunit/CMakeLists.txt
+4 −1 tests/cunit/Makefile.am
+ tests/cunit/data/simple.dbf
+1 −0 tests/cunit/data/simple.prj
+ tests/cunit/data/simple.shp
+ tests/cunit/data/simple.shx
+2 −0 tests/cunit/pio_tests.h
+3 −0 tests/cunit/run_tests.sh.in
+28 −0 tests/cunit/test_common.c
+19 −3 tests/cunit/test_darray.c
+279 −0 tests/cunit/test_gdal.c
+7 −0 tests/general/CMakeLists.txt
+7 −0 tests/performance/CMakeLists.txt
+7 −1 tests/unit/CMakeLists.txt
Loading