Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
url = https://github.com/NCAR/ParallelIO
fxDONOTUSEurl = https://github.com/NCAR/ParallelIO
fxrequired = ToplevelRequired
fxtag = pio2_7_0
fxtag = pio2_6_8

[submodule "mpi-serial"]
path = libraries/mpi-serial
Expand Down
11 changes: 1 addition & 10 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ components/rtm https://github.com/ESCOMP/rtm/tree/rtm1_0
components/ww3 https://github.com/ESCOMP/WW3-CESM/tree/main_0.0.19 --
components/mizuroute https://github.com/ESCOMP/mizuRoute/tree/cesm-coupling.v3.1.1 **
components/mosart https://github.com/ESCOMP/mosart/tree/mosart1_1_13 --
libraries/parallelio https://github.com/NCAR/ParallilIO/tree/pio2_7_0 **
libraries/parallelio https://github.com/NCAR/ParallilIO/tree/pio2_6_8 --
libraries/mpi-serial https://github.com/ESMCI/mpi-serial/tree/MPIserial_2.5.0 --
libraries/tuv-x https://github.com/NCAR/tuv-x/tree/v0.14.3 --
tools/statistical_ensemble_test/pyCECT https://github.com/NCAR/PyCECT/tree/3.2.1 --
Expand Down Expand Up @@ -167,15 +167,6 @@ mizuRoute
Several bug fixes


ParallelIO
Erik Kluzek 2026-05-29 - pio2_7_0 - libraries/parallelio (cesm3_0_alpha09c)
https://github.com/NCAR/ParallelIO/tags/pio2_7_0

pio2_7_0: Update to new release
pio2_6_10: Add parallel GDAL read, update build
pio2_6_9: Build updates


==============================================================
Tag name: cesm3_0_alpha09b
Originator(s): CSEG
Expand Down
2 changes: 1 addition & 1 deletion libraries/parallelio
Submodule parallelio updated 45 files
+0 −1 .github/workflows/netcdf_hdf5_no_pnetcdf_ncint_mpich.yml
+0 −1 .github/workflows/netcdf_hdf5_pnetcdf_ncint_mpich_asan.yml
+0 −1 .github/workflows/netcdf_pnetcdf_openmpi.yml
+110 −226 CMakeLists.txt
+143 −0 cmake/FindNetCDF.cmake
+68 −0 cmake/FindPnetCDF.cmake
+7 −11 cmake/LibFind.cmake
+0 −2 cmake_config.h.in
+5 −25 configure.ac
+17 −18 doc/CMakeLists.txt
+4 −5 examples/CMakeLists.txt
+19 −20 examples/basic/CMakeLists.txt
+20 −23 examples/c/CMakeLists.txt
+5 −6 examples/cxx/CMakeLists.txt
+10 −23 examples/f03/CMakeLists.txt
+0 −1 libpio.settings.in
+24 −29 src/CMakeLists.txt
+14 −32 src/clib/CMakeLists.txt
+0 −3 src/clib/Makefile.am
+159 −187 src/clib/pio.h
+6 −27 src/clib/pio_darray.c
+1 −7 src/clib/pio_darray_int.c
+0 −11 src/clib/pio_file.c
+0 −1,244 src/clib/pio_gdal.c
+0 −5 src/clib/pio_internal.h
+0 −2 src/clib/pio_lists.c
+1 −4 src/clib/pioc_support.c
+116 −142 src/flib/CMakeLists.txt
+74 −92 src/gptl/CMakeLists.txt
+16 −18 tests/CMakeLists.txt
+1 −6 tests/cperf/CMakeLists.txt
+9 −36 tests/cunit/CMakeLists.txt
+1 −4 tests/cunit/Makefile.am
+ tests/cunit/data/simple.dbf
+0 −1 tests/cunit/data/simple.prj
+ tests/cunit/data/simple.shp
+ tests/cunit/data/simple.shx
+0 −2 tests/cunit/pio_tests.h
+0 −3 tests/cunit/run_tests.sh.in
+0 −28 tests/cunit/test_common.c
+3 −19 tests/cunit/test_darray.c
+0 −279 tests/cunit/test_gdal.c
+0 −7 tests/general/CMakeLists.txt
+0 −7 tests/performance/CMakeLists.txt
+1 −7 tests/unit/CMakeLists.txt
Loading