Skip to content

Commit

Permalink
WIP: Update HighFive SHA to master.
Browse files Browse the repository at this point in the history
The current `master` contains a fix for collective I/O when some
selections are empty.
  • Loading branch information
1uc committed Jan 15, 2024
1 parent 0577eb5 commit 155eb18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extlib/HighFive
Submodule HighFive updated 65 files
+23 −17 .github/ISSUE_TEMPLATE/bug_report.md
+44 −0 .github/ISSUE_TEMPLATE/build_failure.md
+0 −11 .github/ISSUE_TEMPLATE/feature_request.md
+1 −0 .github/build.sh
+70 −0 .github/create_submodule_update_pr.sh
+0 −25 .github/pull_request_template.md
+1 −30 .github/workflows/check_doxygen_awesome_version.yml
+19 −7 .github/workflows/ci.yml
+8 −1 CMake/HighFiveWarnings.cmake
+1 −0 CMakeLists.txt
+131 −0 doc/developer_guide.md
+197 −58 doc/doxygen-awesome-css/doxygen-awesome.css
+4 −1 doc/installation.md
+18 −0 include/highfive/H5DataSpace.hpp
+11 −14 include/highfive/H5DataType.hpp
+15 −0 include/highfive/H5PropertyList.hpp
+9 −6 include/highfive/H5Utility.hpp
+19 −40 include/highfive/bits/H5Annotate_traits_misc.hpp
+11 −16 include/highfive/bits/H5Attribute_misc.hpp
+2 −2 include/highfive/bits/H5Converter_misc.hpp
+6 −15 include/highfive/bits/H5DataSet_misc.hpp
+34 −108 include/highfive/bits/H5DataType_misc.hpp
+18 −32 include/highfive/bits/H5Dataspace_misc.hpp
+11 −7 include/highfive/bits/H5Exception_misc.hpp
+9 −19 include/highfive/bits/H5File_misc.hpp
+27 −0 include/highfive/bits/H5Inspector_decl.hpp
+21 −249 include/highfive/bits/H5Inspector_misc.hpp
+1 −2 include/highfive/bits/H5Node_traits.hpp
+87 −139 include/highfive/bits/H5Node_traits_misc.hpp
+14 −14 include/highfive/bits/H5Object_misc.hpp
+4 −8 include/highfive/bits/H5Path_traits_misc.hpp
+47 −120 include/highfive/bits/H5PropertyList_misc.hpp
+9 −3 include/highfive/bits/H5ReadWrite_misc.hpp
+8 −13 include/highfive/bits/H5Reference_misc.hpp
+8 −12 include/highfive/bits/H5Slice_traits.hpp
+22 −36 include/highfive/bits/H5Slice_traits_misc.hpp
+19 −0 include/highfive/bits/h5_wrapper.hpp
+131 −0 include/highfive/bits/h5a_wrapper.hpp
+125 −0 include/highfive/bits/h5d_wrapper.hpp
+39 −0 include/highfive/bits/h5e_wrapper.hpp
+58 −0 include/highfive/bits/h5f_wrapper.hpp
+46 −0 include/highfive/bits/h5g_wrapper.hpp
+79 −0 include/highfive/bits/h5i_wrapper.hpp
+132 −0 include/highfive/bits/h5l_wrapper.hpp
+19 −0 include/highfive/bits/h5o_wrapper.hpp
+376 −0 include/highfive/bits/h5p_wrapper.hpp
+42 −0 include/highfive/bits/h5r_wrapper.hpp
+115 −0 include/highfive/bits/h5s_wrapper.hpp
+230 −0 include/highfive/bits/h5t_wrapper.hpp
+164 −0 include/highfive/boost.hpp
+93 −0 include/highfive/eigen.hpp
+21 −0 include/highfive/half_float.hpp
+0 −4 src/examples/create_dataset_half_float.cpp
+30 −24 tests/test_project_integration.sh
+1 −1 tests/unit/CMakeLists.txt
+70 −0 tests/unit/create_traits.hpp
+461 −0 tests/unit/data_generator.hpp
+108 −0 tests/unit/supported_types.hpp
+317 −36 tests/unit/test_all_types.cpp
+536 −0 tests/unit/test_high_five_selection.cpp
+0 −2 tests/unit/tests_high_five.hpp
+75 −869 tests/unit/tests_high_five_base.cpp
+410 −0 tests/unit/tests_high_five_data_type.cpp
+1 −1 tests/unit/tests_high_five_multi_dims.cpp
+77 −0 tests/unit/tests_high_five_parallel.cpp

0 comments on commit 155eb18

Please sign in to comment.