Skip to content

Commit

Permalink
Update NESO-Particles submodule to the HDF5 fix (#219)
Browse files Browse the repository at this point in the history
* updated NESO-Particles submodule to the commit that solves the hdf5 enable c fix

* updated NESO-Particles submodule commit

* bump NESO-Particles commit
  • Loading branch information
will-saunders-ukaea authored Dec 6, 2023
1 parent ad599e3 commit 90ab893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neso-particles
Submodule neso-particles updated 56 files
+0 −3 CMakeLists.txt
+2 −2 README.md
+7 −1 cmake/neso-particles-config.cmake
+1 −0 docs/Makefile
+13 −0 docs/get_example_sources.sh
+134 −0 docs/sphinx/source/concept/particle_loop.rst
+37 −0 docs/sphinx/source/concept/particle_sub_group.rst
+42 −88 include/boundary_conditions.hpp
+31 −49 include/cartesian_mesh.hpp
+33 −48 include/cell_binning.hpp
+133 −16 include/cell_dat.hpp
+1 −1 include/cell_dat_compression.hpp
+4 −191 include/cell_dat_move.hpp
+195 −0 include/cell_dat_move_impl.hpp
+32 −0 include/communication.hpp
+67 −4 include/compute_target.hpp
+341 −0 include/containers/blocked_binary_tree.hpp
+154 −0 include/containers/global_array.hpp
+156 −0 include/containers/local_array.hpp
+71 −0 include/containers/tuple.hpp
+2 −113 include/departing_particle_identification.hpp
+130 −0 include/departing_particle_identification_impl.hpp
+2 −223 include/global_mapping.hpp
+223 −0 include/global_mapping_impl.hpp
+1,162 −0 include/loop/particle_loop.hpp
+278 −0 include/mesh_hierarchy.hpp
+22 −0 include/mesh_interface.hpp
+10 −1 include/neso_particles.hpp
+9 −11 include/packing_unpacking.hpp
+48 −98 include/parallel_initialisation.hpp
+63 −2 include/particle_dat.hpp
+173 −51 include/particle_group.hpp
+33 −46 include/particle_remover.hpp
+4 −1 include/particle_spec.hpp
+398 −0 include/particle_sub_group.hpp
+37 −0 include/typedefs.hpp
+72 −0 include/utility.hpp
+0 −2 test/CMakeLists.txt
+53 −0 test/example_sources/example_particle_loop_0.hpp
+29 −0 test/example_sources/example_particle_loop_0_nc.hpp
+51 −0 test/example_sources/example_particle_loop_cell_dat_const.hpp
+40 −0 test/example_sources/example_particle_loop_global_array.hpp
+53 −0 test/example_sources/example_particle_loop_local_array.hpp
+29 −0 test/example_sources/example_particle_sub_group_creation.hpp
+31 −0 test/example_sources/example_particle_sub_group_loop.hpp
+2 −4 test/main.cpp
+95 −0 test/test_boundary_pbc.cpp
+23 −0 test/test_cell_dat.cpp
+108 −0 test/test_examples.cpp
+72 −0 test/test_global_array.cpp
+106 −0 test/test_int_key_value_map.cpp
+51 −0 test/test_local_array.cpp
+115 −0 test/test_mesh_hierarchy.cpp
+660 −0 test/test_particle_loop.cpp
+340 −0 test/test_particle_sub_group.cpp
+60 −0 test/test_tuple.cpp

0 comments on commit 90ab893

Please sign in to comment.