├── .clang-format ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build_failure.md │ ├── config.yml │ └── feature_request.md ├── build.sh ├── create_submodule_update_pr.sh ├── run_examples.sh └── workflows │ ├── check_doxygen_awesome_version.yml │ ├── ci.yml │ ├── clang_format.yml │ ├── coverage.yml │ ├── gh-pages.yml │ ├── integration_trigger.yml │ └── version_file.yml ├── .gitignore ├── .gitmodules ├── .zenodo.json ├── AUTHORS.txt ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bin └── format.sh ├── cmake ├── HighFiveConfig.cmake ├── HighFiveFlags.cmake ├── HighFiveOptionalDependencies.cmake └── HighFiveWarnings.cmake ├── codecov.yml ├── doc ├── CMakeLists.txt ├── Doxyfile ├── DoxygenLayout.xml ├── developer_guide.md ├── doxygen-awesome-css │ ├── doxygen-awesome.css │ └── update_doxygen_awesome.sh ├── environment.yaml ├── installation.md ├── migration_guide.md └── poster │ ├── example1_hdf5.cpp │ ├── example1_highfive.cpp │ ├── example3.cpp │ ├── example6.cpp │ ├── example_boost.cpp │ ├── example_boost_ublas.cpp │ ├── example_easy_h5py.py │ ├── example_easy_highfive.cpp │ ├── example_props.cpp │ ├── examples.js │ ├── godbolt.org.ico │ └── index.html ├── include └── highfive │ ├── H5Attribute.hpp │ ├── H5DataSet.hpp │ ├── H5DataSpace.hpp │ ├── H5DataType.hpp │ ├── H5Easy.hpp │ ├── H5Exception.hpp │ ├── H5File.hpp │ ├── H5Group.hpp │ ├── H5Object.hpp │ ├── H5PropertyList.hpp │ ├── H5Reference.hpp │ ├── H5Selection.hpp │ ├── H5Utility.hpp │ ├── H5Version.hpp │ ├── H5Version.hpp.in │ ├── bits │ ├── H5Annotate_traits.hpp │ ├── H5Annotate_traits_misc.hpp │ ├── H5Attribute_misc.hpp │ ├── H5Converter_misc.hpp │ ├── H5DataSet_misc.hpp │ ├── H5DataType_misc.hpp │ ├── H5Dataspace_misc.hpp │ ├── H5Exception_misc.hpp │ ├── H5File_misc.hpp │ ├── H5Friends.hpp │ ├── H5Inspector_decl.hpp │ ├── H5Inspector_misc.hpp │ ├── H5Iterables_misc.hpp │ ├── H5Node_traits.hpp │ ├── H5Node_traits_misc.hpp │ ├── H5Object_misc.hpp │ ├── H5Path_traits.hpp │ ├── H5Path_traits_misc.hpp │ ├── H5PropertyList_misc.hpp │ ├── H5ReadWrite_misc.hpp │ ├── H5Reference_misc.hpp │ ├── H5Selection_misc.hpp │ ├── H5Slice_traits.hpp │ ├── H5Slice_traits_misc.hpp │ ├── H5Utils.hpp │ ├── H5_definitions.hpp │ ├── assert_compatible_spaces.hpp │ ├── compute_total_size.hpp │ ├── convert_size_vector.hpp │ ├── h5_wrapper.hpp │ ├── h5a_wrapper.hpp │ ├── h5d_wrapper.hpp │ ├── h5e_wrapper.hpp │ ├── h5f_wrapper.hpp │ ├── h5g_wrapper.hpp │ ├── h5i_wrapper.hpp │ ├── h5l_wrapper.hpp │ ├── h5o_wrapper.hpp │ ├── h5p_wrapper.hpp │ ├── h5r_wrapper.hpp │ ├── h5s_wrapper.hpp │ ├── h5t_wrapper.hpp │ ├── inspector_stl_span_misc.hpp │ ├── squeeze.hpp │ └── string_padding.hpp │ ├── boost.hpp │ ├── boost_multi_array.hpp │ ├── boost_span.hpp │ ├── boost_ublas.hpp │ ├── eigen.hpp │ ├── experimental │ └── opencv.hpp │ ├── h5easy_bits │ ├── H5Easy_Eigen.hpp │ ├── H5Easy_misc.hpp │ ├── H5Easy_public.hpp │ ├── H5Easy_scalar.hpp │ └── default_io_impl.hpp │ ├── half_float.hpp │ ├── highfive.hpp │ ├── span.hpp │ └── xtensor.hpp ├── src ├── benchmarks │ ├── Makefile │ ├── README.md │ ├── hdf5_bench.cpp │ ├── hdf5_bench_improved.cpp │ ├── highfive_bench.cpp │ ├── imgs │ │ ├── bench_hdf5_base.png │ │ ├── bench_hdf5_improved.png │ │ └── bench_highfive.png │ └── run_benchmark.sh └── examples │ ├── CMakeLists.txt │ ├── boost_multi_array_2D.cpp │ ├── boost_multiarray_complex.cpp │ ├── boost_ublas_double.cpp │ ├── broadcasting_arrays.cpp │ ├── compound_types.cpp │ ├── create_attribute_string_integer.cpp │ ├── create_dataset_double.cpp │ ├── create_dataset_half_float.cpp │ ├── create_datatype.cpp │ ├── create_extensible_dataset.cpp │ ├── create_large_attribute.cpp │ ├── create_page_allocated_files.cpp │ ├── easy_attribute.cpp │ ├── easy_dumpoptions.cpp │ ├── easy_load_dump.cpp │ ├── eigen_map.cpp │ ├── eigen_matrix.cpp │ ├── eigen_vector.cpp │ ├── hl_hdf5_inmemory_files.cpp │ ├── parallel_hdf5_collective_io.cpp │ ├── parallel_hdf5_independent_io.cpp │ ├── read_write_dataset_string.cpp │ ├── read_write_raw_ptr.cpp │ ├── read_write_single_scalar.cpp │ ├── read_write_std_span.cpp │ ├── read_write_std_strings.cpp │ ├── read_write_vector_dataset.cpp │ ├── read_write_vector_dataset_references.cpp │ ├── readme_snippet.cpp │ ├── renaming_objects.cpp │ ├── select_by_id_dataset_cpp11.cpp │ ├── select_partial_dataset_cpp11.cpp │ └── select_slices.cpp └── tests ├── cmake_integration ├── README.md ├── application │ ├── CMakeLists.txt │ ├── deps │ │ └── .gitignore │ └── hi5_application.cpp ├── dependent_library │ ├── CMakeLists.txt │ ├── cmake │ │ └── Hi5DependentConfig.cmake.in │ ├── include │ │ └── hi5_dependent │ │ │ ├── read.hpp │ │ │ └── write.hpp │ └── src │ │ └── hi5_dependent │ │ ├── boost.cpp │ │ ├── read_vector.cpp │ │ └── write_vector.cpp ├── test_cmake_integration.sh └── test_dependent_library │ ├── CMakeLists.txt │ └── test_dependent_library.cpp └── unit ├── CMakeLists.txt ├── compary_arrays.hpp ├── create_traits.hpp ├── data_generator.hpp ├── supported_types.hpp ├── test_all_types.cpp ├── test_boost.cpp ├── test_empty_arrays.cpp ├── test_high_five_selection.cpp ├── test_legacy.cpp ├── test_opencv.cpp ├── test_stl.cpp ├── test_string.cpp ├── test_xtensor.cpp ├── tests_high_five.hpp ├── tests_high_five_base.cpp ├── tests_high_five_data_type.cpp ├── tests_high_five_easy.cpp ├── tests_high_five_parallel.cpp └── tests_import_public_headers.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.clang-format -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build_failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/ISSUE_TEMPLATE/build_failure.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/build.sh -------------------------------------------------------------------------------- /.github/create_submodule_update_pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/create_submodule_update_pr.sh -------------------------------------------------------------------------------- /.github/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/run_examples.sh -------------------------------------------------------------------------------- /.github/workflows/check_doxygen_awesome_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/check_doxygen_awesome_version.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clang_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/clang_format.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/integration_trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/integration_trigger.yml -------------------------------------------------------------------------------- /.github/workflows/version_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.github/workflows/version_file.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.gitmodules -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/README.md -------------------------------------------------------------------------------- /bin/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/bin/format.sh -------------------------------------------------------------------------------- /cmake/HighFiveConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/cmake/HighFiveConfig.cmake -------------------------------------------------------------------------------- /cmake/HighFiveFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/cmake/HighFiveFlags.cmake -------------------------------------------------------------------------------- /cmake/HighFiveOptionalDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/cmake/HighFiveOptionalDependencies.cmake -------------------------------------------------------------------------------- /cmake/HighFiveWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/cmake/HighFiveWarnings.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/developer_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/developer_guide.md -------------------------------------------------------------------------------- /doc/doxygen-awesome-css/doxygen-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/doxygen-awesome-css/doxygen-awesome.css -------------------------------------------------------------------------------- /doc/doxygen-awesome-css/update_doxygen_awesome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/doxygen-awesome-css/update_doxygen_awesome.sh -------------------------------------------------------------------------------- /doc/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/environment.yaml -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/migration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/migration_guide.md -------------------------------------------------------------------------------- /doc/poster/example1_hdf5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example1_hdf5.cpp -------------------------------------------------------------------------------- /doc/poster/example1_highfive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example1_highfive.cpp -------------------------------------------------------------------------------- /doc/poster/example3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example3.cpp -------------------------------------------------------------------------------- /doc/poster/example6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example6.cpp -------------------------------------------------------------------------------- /doc/poster/example_boost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example_boost.cpp -------------------------------------------------------------------------------- /doc/poster/example_boost_ublas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example_boost_ublas.cpp -------------------------------------------------------------------------------- /doc/poster/example_easy_h5py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example_easy_h5py.py -------------------------------------------------------------------------------- /doc/poster/example_easy_highfive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example_easy_highfive.cpp -------------------------------------------------------------------------------- /doc/poster/example_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/example_props.cpp -------------------------------------------------------------------------------- /doc/poster/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/examples.js -------------------------------------------------------------------------------- /doc/poster/godbolt.org.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/godbolt.org.ico -------------------------------------------------------------------------------- /doc/poster/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/doc/poster/index.html -------------------------------------------------------------------------------- /include/highfive/H5Attribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Attribute.hpp -------------------------------------------------------------------------------- /include/highfive/H5DataSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5DataSet.hpp -------------------------------------------------------------------------------- /include/highfive/H5DataSpace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5DataSpace.hpp -------------------------------------------------------------------------------- /include/highfive/H5DataType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5DataType.hpp -------------------------------------------------------------------------------- /include/highfive/H5Easy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Easy.hpp -------------------------------------------------------------------------------- /include/highfive/H5Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Exception.hpp -------------------------------------------------------------------------------- /include/highfive/H5File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5File.hpp -------------------------------------------------------------------------------- /include/highfive/H5Group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Group.hpp -------------------------------------------------------------------------------- /include/highfive/H5Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Object.hpp -------------------------------------------------------------------------------- /include/highfive/H5PropertyList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5PropertyList.hpp -------------------------------------------------------------------------------- /include/highfive/H5Reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Reference.hpp -------------------------------------------------------------------------------- /include/highfive/H5Selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Selection.hpp -------------------------------------------------------------------------------- /include/highfive/H5Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Utility.hpp -------------------------------------------------------------------------------- /include/highfive/H5Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Version.hpp -------------------------------------------------------------------------------- /include/highfive/H5Version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/H5Version.hpp.in -------------------------------------------------------------------------------- /include/highfive/bits/H5Annotate_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Annotate_traits.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Annotate_traits_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Annotate_traits_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Attribute_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Attribute_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Converter_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Converter_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5DataSet_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5DataSet_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5DataType_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5DataType_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Dataspace_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Dataspace_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Exception_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Exception_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5File_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5File_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Friends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Friends.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Inspector_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Inspector_decl.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Inspector_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Inspector_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Iterables_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Iterables_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Node_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Node_traits.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Node_traits_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Node_traits_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Object_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Object_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Path_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Path_traits.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Path_traits_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Path_traits_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5PropertyList_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5PropertyList_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5ReadWrite_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5ReadWrite_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Reference_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Reference_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Selection_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Selection_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Slice_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Slice_traits.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Slice_traits_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Slice_traits_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5Utils.hpp -------------------------------------------------------------------------------- /include/highfive/bits/H5_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/H5_definitions.hpp -------------------------------------------------------------------------------- /include/highfive/bits/assert_compatible_spaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/assert_compatible_spaces.hpp -------------------------------------------------------------------------------- /include/highfive/bits/compute_total_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/compute_total_size.hpp -------------------------------------------------------------------------------- /include/highfive/bits/convert_size_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/convert_size_vector.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5a_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5a_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5d_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5d_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5e_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5e_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5f_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5f_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5g_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5g_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5i_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5i_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5l_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5l_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5o_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5o_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5p_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5p_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5r_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5r_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5s_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5s_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/h5t_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/h5t_wrapper.hpp -------------------------------------------------------------------------------- /include/highfive/bits/inspector_stl_span_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/inspector_stl_span_misc.hpp -------------------------------------------------------------------------------- /include/highfive/bits/squeeze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/squeeze.hpp -------------------------------------------------------------------------------- /include/highfive/bits/string_padding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/bits/string_padding.hpp -------------------------------------------------------------------------------- /include/highfive/boost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/boost.hpp -------------------------------------------------------------------------------- /include/highfive/boost_multi_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/boost_multi_array.hpp -------------------------------------------------------------------------------- /include/highfive/boost_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/boost_span.hpp -------------------------------------------------------------------------------- /include/highfive/boost_ublas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/boost_ublas.hpp -------------------------------------------------------------------------------- /include/highfive/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/eigen.hpp -------------------------------------------------------------------------------- /include/highfive/experimental/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/experimental/opencv.hpp -------------------------------------------------------------------------------- /include/highfive/h5easy_bits/H5Easy_Eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/h5easy_bits/H5Easy_Eigen.hpp -------------------------------------------------------------------------------- /include/highfive/h5easy_bits/H5Easy_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/h5easy_bits/H5Easy_misc.hpp -------------------------------------------------------------------------------- /include/highfive/h5easy_bits/H5Easy_public.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/h5easy_bits/H5Easy_public.hpp -------------------------------------------------------------------------------- /include/highfive/h5easy_bits/H5Easy_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/h5easy_bits/H5Easy_scalar.hpp -------------------------------------------------------------------------------- /include/highfive/h5easy_bits/default_io_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/h5easy_bits/default_io_impl.hpp -------------------------------------------------------------------------------- /include/highfive/half_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/half_float.hpp -------------------------------------------------------------------------------- /include/highfive/highfive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/highfive.hpp -------------------------------------------------------------------------------- /include/highfive/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/span.hpp -------------------------------------------------------------------------------- /include/highfive/xtensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/include/highfive/xtensor.hpp -------------------------------------------------------------------------------- /src/benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/Makefile -------------------------------------------------------------------------------- /src/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/README.md -------------------------------------------------------------------------------- /src/benchmarks/hdf5_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/hdf5_bench.cpp -------------------------------------------------------------------------------- /src/benchmarks/hdf5_bench_improved.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/hdf5_bench_improved.cpp -------------------------------------------------------------------------------- /src/benchmarks/highfive_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/highfive_bench.cpp -------------------------------------------------------------------------------- /src/benchmarks/imgs/bench_hdf5_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/imgs/bench_hdf5_base.png -------------------------------------------------------------------------------- /src/benchmarks/imgs/bench_hdf5_improved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/imgs/bench_hdf5_improved.png -------------------------------------------------------------------------------- /src/benchmarks/imgs/bench_highfive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/imgs/bench_highfive.png -------------------------------------------------------------------------------- /src/benchmarks/run_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/benchmarks/run_benchmark.sh -------------------------------------------------------------------------------- /src/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/boost_multi_array_2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/boost_multi_array_2D.cpp -------------------------------------------------------------------------------- /src/examples/boost_multiarray_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/boost_multiarray_complex.cpp -------------------------------------------------------------------------------- /src/examples/boost_ublas_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/boost_ublas_double.cpp -------------------------------------------------------------------------------- /src/examples/broadcasting_arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/broadcasting_arrays.cpp -------------------------------------------------------------------------------- /src/examples/compound_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/compound_types.cpp -------------------------------------------------------------------------------- /src/examples/create_attribute_string_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_attribute_string_integer.cpp -------------------------------------------------------------------------------- /src/examples/create_dataset_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_dataset_double.cpp -------------------------------------------------------------------------------- /src/examples/create_dataset_half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_dataset_half_float.cpp -------------------------------------------------------------------------------- /src/examples/create_datatype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_datatype.cpp -------------------------------------------------------------------------------- /src/examples/create_extensible_dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_extensible_dataset.cpp -------------------------------------------------------------------------------- /src/examples/create_large_attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_large_attribute.cpp -------------------------------------------------------------------------------- /src/examples/create_page_allocated_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/create_page_allocated_files.cpp -------------------------------------------------------------------------------- /src/examples/easy_attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/easy_attribute.cpp -------------------------------------------------------------------------------- /src/examples/easy_dumpoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/easy_dumpoptions.cpp -------------------------------------------------------------------------------- /src/examples/easy_load_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/easy_load_dump.cpp -------------------------------------------------------------------------------- /src/examples/eigen_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/eigen_map.cpp -------------------------------------------------------------------------------- /src/examples/eigen_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/eigen_matrix.cpp -------------------------------------------------------------------------------- /src/examples/eigen_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/eigen_vector.cpp -------------------------------------------------------------------------------- /src/examples/hl_hdf5_inmemory_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/hl_hdf5_inmemory_files.cpp -------------------------------------------------------------------------------- /src/examples/parallel_hdf5_collective_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/parallel_hdf5_collective_io.cpp -------------------------------------------------------------------------------- /src/examples/parallel_hdf5_independent_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/parallel_hdf5_independent_io.cpp -------------------------------------------------------------------------------- /src/examples/read_write_dataset_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_dataset_string.cpp -------------------------------------------------------------------------------- /src/examples/read_write_raw_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_raw_ptr.cpp -------------------------------------------------------------------------------- /src/examples/read_write_single_scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_single_scalar.cpp -------------------------------------------------------------------------------- /src/examples/read_write_std_span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_std_span.cpp -------------------------------------------------------------------------------- /src/examples/read_write_std_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_std_strings.cpp -------------------------------------------------------------------------------- /src/examples/read_write_vector_dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_vector_dataset.cpp -------------------------------------------------------------------------------- /src/examples/read_write_vector_dataset_references.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/read_write_vector_dataset_references.cpp -------------------------------------------------------------------------------- /src/examples/readme_snippet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/readme_snippet.cpp -------------------------------------------------------------------------------- /src/examples/renaming_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/renaming_objects.cpp -------------------------------------------------------------------------------- /src/examples/select_by_id_dataset_cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/select_by_id_dataset_cpp11.cpp -------------------------------------------------------------------------------- /src/examples/select_partial_dataset_cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/select_partial_dataset_cpp11.cpp -------------------------------------------------------------------------------- /src/examples/select_slices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/src/examples/select_slices.cpp -------------------------------------------------------------------------------- /tests/cmake_integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/README.md -------------------------------------------------------------------------------- /tests/cmake_integration/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/application/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cmake_integration/application/deps/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/cmake_integration/application/hi5_application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/application/hi5_application.cpp -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/cmake/Hi5DependentConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/cmake/Hi5DependentConfig.cmake.in -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/include/hi5_dependent/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/include/hi5_dependent/read.hpp -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/include/hi5_dependent/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/include/hi5_dependent/write.hpp -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/src/hi5_dependent/boost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/src/hi5_dependent/boost.cpp -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/src/hi5_dependent/read_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/src/hi5_dependent/read_vector.cpp -------------------------------------------------------------------------------- /tests/cmake_integration/dependent_library/src/hi5_dependent/write_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/dependent_library/src/hi5_dependent/write_vector.cpp -------------------------------------------------------------------------------- /tests/cmake_integration/test_cmake_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/test_cmake_integration.sh -------------------------------------------------------------------------------- /tests/cmake_integration/test_dependent_library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/test_dependent_library/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cmake_integration/test_dependent_library/test_dependent_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/cmake_integration/test_dependent_library/test_dependent_library.cpp -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/compary_arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/compary_arrays.hpp -------------------------------------------------------------------------------- /tests/unit/create_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/create_traits.hpp -------------------------------------------------------------------------------- /tests/unit/data_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/data_generator.hpp -------------------------------------------------------------------------------- /tests/unit/supported_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/supported_types.hpp -------------------------------------------------------------------------------- /tests/unit/test_all_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_all_types.cpp -------------------------------------------------------------------------------- /tests/unit/test_boost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_boost.cpp -------------------------------------------------------------------------------- /tests/unit/test_empty_arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_empty_arrays.cpp -------------------------------------------------------------------------------- /tests/unit/test_high_five_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_high_five_selection.cpp -------------------------------------------------------------------------------- /tests/unit/test_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_legacy.cpp -------------------------------------------------------------------------------- /tests/unit/test_opencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_opencv.cpp -------------------------------------------------------------------------------- /tests/unit/test_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_stl.cpp -------------------------------------------------------------------------------- /tests/unit/test_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_string.cpp -------------------------------------------------------------------------------- /tests/unit/test_xtensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/test_xtensor.cpp -------------------------------------------------------------------------------- /tests/unit/tests_high_five.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/tests_high_five.hpp -------------------------------------------------------------------------------- /tests/unit/tests_high_five_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/tests_high_five_base.cpp -------------------------------------------------------------------------------- /tests/unit/tests_high_five_data_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/tests_high_five_data_type.cpp -------------------------------------------------------------------------------- /tests/unit/tests_high_five_easy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/tests_high_five_easy.cpp -------------------------------------------------------------------------------- /tests/unit/tests_high_five_parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/tests_high_five_parallel.cpp -------------------------------------------------------------------------------- /tests/unit/tests_import_public_headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBrain/HighFive/HEAD/tests/unit/tests_import_public_headers.cpp --------------------------------------------------------------------------------