Skip to content

Commit

Permalink
Bump KaMPIng to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
niklas-uhl committed Jun 27, 2024
1 parent 8cb03f0 commit af72737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extlib/kamping
Submodule kamping updated 57 files
+2 −3 .github/workflows/build.yml
+0 −21 .github/workflows/clang-format-check.yml
+0 −26 .github/workflows/cmake-format-check.yml
+1 −2 .github/workflows/doxygen-check.yml
+1 −1 .github/workflows/formatting-check.yml
+39 −0 .github/workflows/gh-pages.yml
+3 −0 .gitignore
+45 −0 CITATION.cff
+2 −0 CMakeLists.txt
+21 −2 README.md
+4 −4 docs/Doxyfile.in
+0 −0 docs/guidelines/coding_guidelines.md
+0 −0 docs/guidelines/contribution_guidelines.md
+0 −0 docs/guidelines/documentation_guidelines.md
+0 −0 docs/guidelines/testing_guidelines.md
+51 −4 docs/main.dox
+1 −1 docs/parameter_handling.md
+0 −335 docs/requirements.org
+5 −0 examples/applications/CMakeLists.txt
+260 −0 examples/applications/suffix-sorting/prefix_doubling.hpp
+79 −0 examples/applications/suffix-sorting/suffix_sorting.cpp
+1 −1 extern/cereal
+1 −1 extern/doxygen-awesome-css
+1 −1 extern/googletest
+4 −0 include/kamping/collectives/allgather.hpp
+4 −0 include/kamping/collectives/allreduce.hpp
+4 −0 include/kamping/collectives/alltoall.hpp
+3 −0 include/kamping/collectives/barrier.hpp
+4 −0 include/kamping/collectives/bcast.hpp
+4 −0 include/kamping/collectives/exscan.hpp
+4 −0 include/kamping/collectives/gather.hpp
+4 −0 include/kamping/collectives/ibarrier.hpp
+5 −1 include/kamping/collectives/reduce.hpp
+5 −1 include/kamping/collectives/scan.hpp
+5 −1 include/kamping/collectives/scatter.hpp
+128 −12 include/kamping/measurements/aggregated_tree_node.hpp
+147 −0 include/kamping/measurements/counter.hpp
+80 −49 include/kamping/measurements/internal/measurement_utils.hpp
+26 −90 include/kamping/measurements/timer.hpp
+1 −1 include/kamping/named_parameters.hpp
+5 −1 include/kamping/p2p/iprobe.hpp
+5 −1 include/kamping/p2p/irecv.hpp
+5 −1 include/kamping/p2p/isend.hpp
+5 −1 include/kamping/p2p/probe.hpp
+5 −1 include/kamping/p2p/recv.hpp
+5 −1 include/kamping/p2p/send.hpp
+5 −1 include/kamping/p2p/try_recv.hpp
+2 −0 include/kamping/plugin/reproducible_reduce.hpp
+150 −0 include/kamping/plugin/sort.hpp
+12 −7 tests/CMakeLists.txt
+1 −1 tests/cmake/KampingTestHelper.cmake
+151 −0 tests/measurements/measurement_test_helpers.hpp
+12 −12 tests/measurements/measurement_utils_test.cpp
+184 −0 tests/measurements/mpi_counter_test.cpp
+88 −131 tests/measurements/mpi_timer_test.cpp
+16 −6 tests/plugins/reproducible_reduce.cpp
+220 −0 tests/plugins/sort_test.cpp

0 comments on commit af72737

Please sign in to comment.