29#include "ParticleList.hpp"
38#include "system/Leaf.hpp"
42#include <boost/container/static_vector.hpp>
43#include <boost/iterator/indirect_iterator.hpp>
44#include <boost/range/algorithm/transform.hpp>
46#include <Cabana_Core.hpp>
47#include <Cabana_NeighborList.hpp>
48#include <Kokkos_Core.hpp>
49#include <Kokkos_ScatterView.hpp>
61#include <unordered_set>
65#ifdef ESPRESSO_CALIPER
66#include <caliper/cali.h>
73template <
typename Callable>
75 { c(p) } -> std::same_as<void>;
94#ifdef ESPRESSO_BOND_CONSTRAINT
134struct MinimalImageDistance {
142struct EuclidianDistance {
163 Kokkos::View<double *[3], Kokkos::LayoutRight, memory_space>;
164 using VirialType = Kokkos::View<double[3], Kokkos::LayoutRight, memory_space>;
166 Kokkos::Experimental::ScatterView<
double *[3], Kokkos::LayoutRight,
169 Kokkos::Experimental::ScatterView<
double[3], Kokkos::LayoutRight,
174 Cabana::TeamVectorOpTag>;
178 std::vector<Particle *> m_particle_index;
180 std::unique_ptr<ParticleDecomposition> m_decomposition;
186 bool m_verlet_skin_set =
false;
187 bool m_rebuild_verlet_list =
true;
188 bool m_rebuild_verlet_list_cabana =
true;
189 std::vector<std::pair<Particle *, Particle *>> m_verlet_list;
190 double m_le_pos_offset_at_last_resort = 0.;
192 double m_verlet_skin = 0.;
193 double m_verlet_reuse = 0.;
194 int m_cached_max_local_particle_id = 0;
195 std::size_t m_num_local_particles_cached = 0;
197 std::unique_ptr<Kokkos::View<int *, memory_space>> m_id_to_index;
198 std::unique_ptr<ForceType> m_local_force;
199 std::optional<ScatterForce> m_scatter_force;
200#ifdef ESPRESSO_ROTATION
201 std::unique_ptr<ForceType> m_local_torque;
202 std::optional<ScatterForce> m_scatter_torque;
205 std::unique_ptr<VirialType> m_local_virial;
206 std::optional<ScatterVirial> m_scatter_virial;
208 std::unique_ptr<LocalBondState> m_bond_state;
209 std::unique_ptr<ListType> m_verlet_list_cabana;
211 std::unique_ptr<AoSoA_pack> m_aosoa;
213 std::vector<Particle *> m_unique_particles;
214 std::shared_ptr<KokkosHandle> m_kokkos_handle;
236 if (
static_cast<unsigned int>(
id) >= m_particle_index.size())
237 m_particle_index.resize(
static_cast<unsigned int>(
id + 1));
239 m_particle_index[
static_cast<unsigned int>(id)] = p;
282 auto &new_part = pl.
insert(std::move(p));
304 if (
static_cast<unsigned int>(
id) >= m_particle_index.size())
307 return m_particle_index[
static_cast<unsigned int>(id)];
314 if (
static_cast<unsigned int>(
id) >= m_particle_index.size())
317 return m_particle_index[
static_cast<unsigned int>(id)];
320 template <
class InputRange,
class OutputIterator>
322 std::ranges::transform(ids,
out,
343 std::size_t count = 0;
344 for (
auto const &cell : m_decomposition->local_cells()) {
345 count += cell->particles().size();
357 template <
typename Callable>
360 parallel_for_each_particle_impl(
decomposition().local_cells(), f);
372 template <
typename Callable>
393 template <
typename Callable>
394 inline void parallel_for_each_particle_impl(std::span<Cell *const> cells,
446 return m_cached_max_local_particle_id;
449 return m_num_local_particles_cached;
455#ifdef ESPRESSO_COLLISION_DETECTION
478 return assert(m_decomposition), *m_decomposition;
483 return assert(m_decomposition), *m_decomposition;
491 m_resort_particles |= level;
492 assert(m_resort_particles >= level);
517 return m_le_pos_offset_at_last_resort;
556#ifdef ESPRESSO_BOND_CONSTRAINT
601 boost::container::static_vector<Particle *, 4>
partners;
624 template <
class Handler>
627 auto const partner_ids =
bond.partner_ids();
646 void invalidate_ghosts() {
655 void set_particle_decomposition(
682 std::optional<std::pair<int, int>> fully_connected_boundary);
700 template <
class Kernel>
void link_cell(
Kernel kernel) {
713 throw std::runtime_error(
"Non-cuboid box type is not compatible with a "
714 "particle decomposition that relies on "
715 "EuclideanDistance for distance calculation.");
719 [&kernel,
df = detail::EuclidianDistance{}](
735#ifdef ESPRESSO_ROTATION
754 return m_rebuild_verlet_list_cabana;
765 int &dihedral_count,
Particle const &p);
789 kernel(m_decomposition->local_cells(), m_decomposition->box(),
790 *m_verlet_list_cabana);
792 m_rebuild_verlet_list_cabana =
false;
798 kernel(m_decomposition->local_cells(), m_decomposition->box());
807 template <
class PairKernel,
class VerletCriterion>
813 if (m_rebuild_verlet_list) {
814 m_verlet_list.clear();
818 m_verlet_list.emplace_back(&p1, &p2);
819 pair_kernel(p1, p2, d);
823 m_rebuild_verlet_list =
false;
824 m_rebuild_verlet_list_cabana =
true;
831 for (
auto const &[
p1,
p2] : m_verlet_list) {
836 for (
auto const &[
p1,
p2] : m_verlet_list) {
865 template <
class PairKernel,
class VerletCriterion>
912 return particle_to_cell(p);
923 template <
class Kernel>
928 if (cell ==
nullptr) {
946 template <
class Kernel,
class DistanceFunc>
947 void short_range_neighbor_loop(
Particle const &
p1,
Cell *
const cell,
950 for (
auto const &
p2 : cell->particles()) {
951 if (
p1.id() !=
p2.id()) {
957 for (
auto const neighbor : cell->neighbors().all()) {
ParticleIterator< std::span< Cell *const >::iterator > CellParticleIterator
CellStructureType
Cell structure topology.
@ NSQUARE
Atom decomposition (N-square).
unsigned map_data_parts(unsigned data_parts)
Map the data parts flags from cells to those used internally by the ghost communication.
Vector implementation and trait types for boost qvm interoperability.
void bond_broken_error(int id, std::span< const int > partner_ids)
void bond_resolution_error(std::span< const int > partner_ids)
Immutable view on a bond.
ESPRESSO_ATTR_ALWAYS_INLINE Utils::Vector3< T > get_mi_vector(Utils::Vector3< T > const &a, Utils::Vector3< T > const &b) const
Get the minimum-image vector between two coordinates.
Describes a cell structure / cell system.
ParticleRange ghost_particles() const
void for_each_ghost_particle(Callable &&f) const
Run a kernel on all ghost particles.
Particle * get_local_particle(int id)
Get a local particle by id.
Kokkos::Experimental::ScatterView< double *[3], Kokkos::LayoutRight, memory_space > ScatterForce
void set_kokkos_handle(std::shared_ptr< KokkosHandle > handle)
void update_particle_index(ParticleList &pl)
Update local particle index.
void check_particle_sorting() const
Check that particles are in the correct cell.
void rebuild_verlet_list_cabana(auto &&kernel, bool rebuild_verlet_list)
std::size_t count_local_particles() const
auto get_scatter_virial()
auto const & bond_state() const
int get_local_angle_bond_numbers() const
void clear_resort_particles()
Set the resort level to sorted.
Cell * find_current_cell(const Particle &p)
Find cell a particle is stored in.
auto is_verlet_skin_set() const
Whether the Verlet skin is set.
void clear_local_properties()
ParticleDecomposition const & decomposition() const
Get the underlying particle decomposition.
int get_local_pair_bond_numbers() const
void clear_particle_index()
Clear the particles index.
Kokkos::Experimental::ScatterView< double[3], Kokkos::LayoutRight, memory_space > ScatterVirial
auto prepare_verlet_list_cabana(double cutoff)
Reset local properties of the Verlet list.
static constexpr auto vector_length
void update_ghosts_and_resort_particle(unsigned data_parts)
Update ghost particles, with particle resort if needed.
Particle * add_local_particle(Particle &&p)
Add a particle.
void set_verlet_skin_heuristic()
Set the Verlet skin using a heuristic.
void set_verlet_skin(double value)
Set the Verlet skin.
void ghosts_update(unsigned data_parts)
Update ghost particles.
void for_each_local_particle(Callable &&f, bool parallel=true) const
Run a kernel on all local particles.
auto get_le_pos_offset_at_last_resort() const
int get_local_dihedral_bond_numbers() const
Kokkos::HostSpace memory_space
int get_cached_max_local_particle_id() const
void get_local_particles(InputRange ids, OutputIterator out)
void update_verlet_stats(int n_steps, int n_verlet_updates)
Kokkos::View< double *[3], Kokkos::LayoutRight, memory_space > ForceType
auto & get_local_torque()
void ghosts_reset_forces()
Set forces and torques on all ghosts to zero.
Kokkos::View< double[3], Kokkos::LayoutRight, memory_space > VirialType
auto const & get_aosoa() const
auto & get_local_virial()
void update_particle_index(int id, Particle *p)
Update local particle index.
void set_local_bond_numbers(int p, int a, int d)
void ghosts_reduce_forces()
Add forces and torques from ghost particles to real particles.
auto const & get_unique_particles() const
unsigned get_resort_particles() const
Get the currently scheduled resort level.
auto get_verlet_reuse() const
Average number of integration steps the Verlet list was re-used.
void rebuild_local_properties(double pair_cutoff)
void non_bonded_loop(PairKernel pair_kernel)
Non-bonded pair loop.
Utils::Vector3d max_range() const
Maximal pair range supported by current cell system.
void add_new_bond(int bond_id, std::vector< int > const &particle_ids)
bool check_resort_required(Utils::Vector3d const &additional_offset={}) const
Check whether a particle has moved further than half the skin since the last Verlet list update,...
const Particle * get_local_particle(int id) const
This is an overloaded member function, provided for convenience. It differs from the above function o...
auto resolve_bond_partners(std::span< const int > partner_ids)
Resolve ids to particles.
void bond_loop(BondKernel const &bond_kernel)
Bonded pair loop.
void ghosts_count()
Synchronize number of ghosts.
void set_resort_particles(Cells::Resort level)
Increase the local resort level at least to level.
void cell_list_loop(auto &&kernel)
void remove_particle(int id)
Remove a particle.
Particle * add_particle(Particle &&p)
Add a particle.
std::size_t get_num_local_particles_cached() const
Kokkos::DefaultHostExecutionSpace execution_space
void resort_particles(bool global_flag)
Resort particles.
void check_particle_index() const
Check that particle index is commensurate with particles.
Cabana::HalfNeighborTag ListAlgorithm
auto get_scatter_torque()
auto get_verlet_skin() const
Get the Verlet skin.
void set_regular_decomposition(double range, std::optional< std::pair< int, int > > fully_connected_boundary)
Set the particle decomposition to RegularDecomposition.
void reset_local_force_and_torque()
void set_atom_decomposition()
Set the particle decomposition to AtomDecomposition.
auto const & get_verlet_list_cabana() const
bool run_on_particle_short_range_neighbors(Particle const &p, Kernel &kernel)
Run kernel on all particles inside local cell and its neighbors.
bool use_parallel_for_each_local_particle() const
whether to use parallel version of for_each_local_particle
void remove_all_particles()
Remove all particles from the cell system.
ParticleRange local_particles() const
void update_particle_index(Particle &p)
Update local particle index.
void ghosts_reduce_rattle_correction()
Add rattle corrections from ghost particles to real particles.
CellStructureType decomposition_type() const
auto is_verlet_list_cabana_rebuild_needed() const
void set_hybrid_decomposition(double cutoff_regular, std::set< int > n_square_types)
Set the particle decomposition to HybridDecomposition.
int get_max_local_particle_id() const
Get the maximal particle id on this node.
Utils::Vector3d max_cutoff() const
Maximal cutoff supported by current cell system.
void update_bond_storage(int &pair_count, int &angle_count, int &dihedral_count, Particle const &p)
Update bond storage(m_*_bond_list_kokkos and m_*_bond_id_kokkos).
void clear_bond_properties()
void non_bonded_loop(PairKernel pair_kernel, const VerletCriterion &verlet_criterion)
Non-bonded pair loop with potential use of verlet lists.
void reset_local_properties()
auto & particles()
Particles.
A distributed particle decomposition.
virtual Utils::Vector3d max_cutoff() const =0
Maximum supported cutoff.
virtual std::span< Cell *const > local_cells() const =0
Get pointer to local cells.
virtual Cell * particle_to_cell(Particle const &p)=0
Determine which cell a particle id belongs to.
virtual Utils::Vector3d max_range() const =0
Range in which calculations are performed.
virtual std::optional< BoxGeometry > minimum_image_distance() const =0
Return the box geometry needed for distance calculation if minimum image convention should be used ne...
virtual BoxGeometry const & box() const =0
Abstract class that represents a component of the system.
std::size_t capacity() const
Capacity of the container.
T & insert(T const &v)
Insert an element into the container.
std::size_t size() const
Number of elements in the container.
Returns true if the particles are to be considered for short range interactions.
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.
Ghost particles and particle exchange.
void link_cell(CellIterator first, CellIterator last, PairKernel &&pair_kernel)
Iterates over all particles in the cell range, and over all pairs within the cells and with their nei...
DataPart
Flags to select particle parts for communication.
@ DATA_PART_MOMENTUM
Particle::m.
@ DATA_PART_FORCE
Particle::f.
@ DATA_PART_PROPERTIES
Particle::p.
@ DATA_PART_BONDS
Particle::bonds.
@ DATA_PART_RATTLE
Particle::rattle.
@ DATA_PART_POSITION
Particle::r.
ParticleRange particles(std::span< Cell *const > cells)
Exception indicating that a particle id could not be resolved.
Distance vector and length handed to pair kernels.
Distance(Utils::Vector3d const &vec21)
Struct holding all information for one particle.
constexpr auto const & id() const
constexpr auto const & force_and_torque() const
constexpr bool is_ghost() const