Fix undefined behavior flagged by UBSAN
[gromacs.git] / src / gromacs / domdec / domdec_topology.cpp
blobfe4f8c82ee82a9e53ba9bd4cf05cadd865f0d595
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2006 - 2014, The GROMACS development team.
5 * Copyright (c) 2015,2016,2017,2018,2019,2020, by the GROMACS development team, led by
6 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 * and including many others, as listed in the AUTHORS file in the
8 * top-level source directory and at http://www.gromacs.org.
10 * GROMACS is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public License
12 * as published by the Free Software Foundation; either version 2.1
13 * of the License, or (at your option) any later version.
15 * GROMACS is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with GROMACS; if not, see
22 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 * If you want to redistribute modifications to GROMACS, please
26 * consider that scientific software is very special. Version
27 * control is crucial - bugs must be traceable. We will be happy to
28 * consider code for inclusion in the official distribution, but
29 * derived work must not be called official GROMACS. Details are found
30 * in the README & COPYING files - if they are missing, get the
31 * official version at http://www.gromacs.org.
33 * To help us fund GROMACS development, we humbly ask that you cite
34 * the research papers on the package. Check out http://www.gromacs.org.
37 /*! \internal \file
39 * \brief This file defines functions used by the domdec module
40 * while managing the construction, use and error checking for
41 * topologies local to a DD rank.
43 * \author Berk Hess <hess@kth.se>
44 * \ingroup module_domdec
47 #include "gmxpre.h"
49 #include <cassert>
50 #include <cstdlib>
51 #include <cstring>
53 #include <algorithm>
54 #include <memory>
55 #include <string>
57 #include "gromacs/domdec/domdec.h"
58 #include "gromacs/domdec/domdec_network.h"
59 #include "gromacs/domdec/ga2la.h"
60 #include "gromacs/gmxlib/network.h"
61 #include "gromacs/math/vec.h"
62 #include "gromacs/mdlib/forcerec.h"
63 #include "gromacs/mdlib/gmx_omp_nthreads.h"
64 #include "gromacs/mdlib/vsite.h"
65 #include "gromacs/mdtypes/commrec.h"
66 #include "gromacs/mdtypes/forcerec.h"
67 #include "gromacs/mdtypes/inputrec.h"
68 #include "gromacs/mdtypes/md_enums.h"
69 #include "gromacs/mdtypes/mdatom.h"
70 #include "gromacs/mdtypes/state.h"
71 #include "gromacs/pbcutil/mshift.h"
72 #include "gromacs/pbcutil/pbc.h"
73 #include "gromacs/topology/ifunc.h"
74 #include "gromacs/topology/mtop_util.h"
75 #include "gromacs/topology/topsort.h"
76 #include "gromacs/utility/cstringutil.h"
77 #include "gromacs/utility/exceptions.h"
78 #include "gromacs/utility/fatalerror.h"
79 #include "gromacs/utility/gmxassert.h"
80 #include "gromacs/utility/listoflists.h"
81 #include "gromacs/utility/logger.h"
82 #include "gromacs/utility/smalloc.h"
83 #include "gromacs/utility/strconvert.h"
84 #include "gromacs/utility/stringstream.h"
85 #include "gromacs/utility/stringutil.h"
86 #include "gromacs/utility/textwriter.h"
88 #include "domdec_constraints.h"
89 #include "domdec_internal.h"
90 #include "domdec_vsite.h"
91 #include "dump.h"
93 using gmx::ArrayRef;
94 using gmx::ListOfLists;
95 using gmx::RVec;
97 /*! \brief The number of integer item in the local state, used for broadcasting of the state */
98 #define NITEM_DD_INIT_LOCAL_STATE 5
100 struct reverse_ilist_t
102 std::vector<int> index; /* Index for each atom into il */
103 std::vector<int> il; /* ftype|type|a0|...|an|ftype|... */
104 int numAtomsInMolecule; /* The number of atoms in this molecule */
107 struct MolblockIndices
109 int a_start;
110 int a_end;
111 int natoms_mol;
112 int type;
115 /*! \brief Struct for thread local work data for local topology generation */
116 struct thread_work_t
118 /*! \brief Constructor
120 * \param[in] ffparams The interaction parameters, the lifetime of the created object should not exceed the lifetime of the passed parameters
122 thread_work_t(const gmx_ffparams_t& ffparams) : idef(ffparams) {}
124 InteractionDefinitions idef; /**< Partial local topology */
125 std::unique_ptr<gmx::VsitePbc> vsitePbc = nullptr; /**< vsite PBC structure */
126 int nbonded = 0; /**< The number of bondeds in this struct */
127 ListOfLists<int> excl; /**< List of exclusions */
128 int excl_count = 0; /**< The total exclusion count for \p excl */
131 /*! \brief Struct for the reverse topology: links bonded interactions to atomsx */
132 struct gmx_reverse_top_t
134 //! @cond Doxygen_Suppress
135 //! \brief Are there constraints in this revserse top?
136 bool bConstr = false;
137 //! \brief Are there settles in this revserse top?
138 bool bSettle = false;
139 //! \brief All bonded interactions have to be assigned?
140 bool bBCheck = false;
141 //! \brief Are there bondeds/exclusions between atoms?
142 bool bInterAtomicInteractions = false;
143 //! \brief Reverse ilist for all moltypes
144 std::vector<reverse_ilist_t> ril_mt;
145 //! \brief The size of ril_mt[?].index summed over all entries
146 int ril_mt_tot_size = 0;
147 //! \brief The sorting state of bondeds for free energy
148 int ilsort = ilsortUNKNOWN;
149 //! \brief molblock to global atom index for quick lookup of molblocks on atom index
150 std::vector<MolblockIndices> mbi;
152 //! \brief Do we have intermolecular interactions?
153 bool bIntermolecularInteractions = false;
154 //! \brief Intermolecular reverse ilist
155 reverse_ilist_t ril_intermol;
157 /* Work data structures for multi-threading */
158 //! \brief Thread work array for local topology generation
159 std::vector<thread_work_t> th_work;
160 //! @endcond
163 /*! \brief Returns the number of atom entries for il in gmx_reverse_top_t */
164 static int nral_rt(int ftype)
166 int nral;
168 nral = NRAL(ftype);
169 if (interaction_function[ftype].flags & IF_VSITE)
171 /* With vsites the reverse topology contains an extra entry
172 * for storing if constructing atoms are vsites.
174 nral += 1;
177 return nral;
180 /*! \brief Return whether interactions of type \p ftype need to be assigned exactly once */
181 static gmx_bool dd_check_ftype(int ftype, gmx_bool bBCheck, gmx_bool bConstr, gmx_bool bSettle)
183 return ((((interaction_function[ftype].flags & IF_BOND) != 0U)
184 && ((interaction_function[ftype].flags & IF_VSITE) == 0U)
185 && (bBCheck || ((interaction_function[ftype].flags & IF_LIMZERO) == 0U)))
186 || (bConstr && (ftype == F_CONSTR || ftype == F_CONSTRNC)) || (bSettle && ftype == F_SETTLE));
189 /*! \brief Checks whether interactions have been assigned for one function type
191 * Loops over a list of interactions in the local topology of one function type
192 * and flags each of the interactions as assigned in the global \p isAssigned list.
193 * Exits with an inconsistency error when an interaction is assigned more than once.
195 static void flagInteractionsForType(const int ftype,
196 const InteractionList& il,
197 const reverse_ilist_t& ril,
198 const gmx::Range<int>& atomRange,
199 const int numAtomsPerMolecule,
200 gmx::ArrayRef<const int> globalAtomIndices,
201 gmx::ArrayRef<int> isAssigned)
203 const int nril_mol = ril.index[numAtomsPerMolecule];
204 const int nral = NRAL(ftype);
206 for (int i = 0; i < il.size(); i += 1 + nral)
208 // ia[0] is the interaction type, ia[1, ...] the atom indices
209 const int* ia = il.iatoms.data() + i;
210 // Extract the global atom index of the first atom in this interaction
211 const int a0 = globalAtomIndices[ia[1]];
212 /* Check if this interaction is in
213 * the currently checked molblock.
215 if (atomRange.isInRange(a0))
217 // The molecule index in the list of this molecule type
218 const int moleculeIndex = (a0 - atomRange.begin()) / numAtomsPerMolecule;
219 const int atomOffset = (a0 - atomRange.begin()) - moleculeIndex * numAtomsPerMolecule;
220 const int globalAtomStartInMolecule = atomRange.begin() + moleculeIndex * numAtomsPerMolecule;
221 int j_mol = ril.index[atomOffset];
222 bool found = false;
223 while (j_mol < ril.index[atomOffset + 1] && !found)
225 const int j = moleculeIndex * nril_mol + j_mol;
226 const int ftype_j = ril.il[j_mol];
227 /* Here we need to check if this interaction has
228 * not already been assigned, since we could have
229 * multiply defined interactions.
231 if (ftype == ftype_j && ia[0] == ril.il[j_mol + 1] && isAssigned[j] == 0)
233 /* Check the atoms */
234 found = true;
235 for (int a = 0; a < nral; a++)
237 if (globalAtomIndices[ia[1 + a]]
238 != globalAtomStartInMolecule + ril.il[j_mol + 2 + a])
240 found = false;
243 if (found)
245 isAssigned[j] = 1;
248 j_mol += 2 + nral_rt(ftype_j);
250 if (!found)
252 gmx_incons("Some interactions seem to be assigned multiple times");
258 /*! \brief Help print error output when interactions are missing in a molblock
260 * \note This function needs to be called on all ranks (contains a global summation)
262 static std::string printMissingInteractionsMolblock(t_commrec* cr,
263 const gmx_reverse_top_t& rt,
264 const char* moltypename,
265 const reverse_ilist_t& ril,
266 const gmx::Range<int>& atomRange,
267 const int numAtomsPerMolecule,
268 const int numMolecules,
269 const InteractionDefinitions& idef)
271 const int nril_mol = ril.index[numAtomsPerMolecule];
272 std::vector<int> isAssigned(numMolecules * nril_mol, 0);
273 gmx::StringOutputStream stream;
274 gmx::TextWriter log(&stream);
276 for (int ftype = 0; ftype < F_NRE; ftype++)
278 if (dd_check_ftype(ftype, rt.bBCheck, rt.bConstr, rt.bSettle))
280 flagInteractionsForType(ftype, idef.il[ftype], ril, atomRange, numAtomsPerMolecule,
281 cr->dd->globalAtomIndices, isAssigned);
285 gmx_sumi(isAssigned.size(), isAssigned.data(), cr);
287 const int numMissingToPrint = 10;
288 int i = 0;
289 for (int mol = 0; mol < numMolecules; mol++)
291 int j_mol = 0;
292 while (j_mol < nril_mol)
294 int ftype = ril.il[j_mol];
295 int nral = NRAL(ftype);
296 int j = mol * nril_mol + j_mol;
297 if (isAssigned[j] == 0 && !(interaction_function[ftype].flags & IF_VSITE))
299 if (DDMASTER(cr->dd))
301 if (i == 0)
303 log.writeLineFormatted("Molecule type '%s'", moltypename);
304 log.writeLineFormatted(
305 "the first %d missing interactions, except for exclusions:",
306 numMissingToPrint);
308 log.writeStringFormatted("%20s atoms", interaction_function[ftype].longname);
309 int a;
310 for (a = 0; a < nral; a++)
312 log.writeStringFormatted("%5d", ril.il[j_mol + 2 + a] + 1);
314 while (a < 4)
316 log.writeString(" ");
317 a++;
319 log.writeString(" global");
320 for (a = 0; a < nral; a++)
322 log.writeStringFormatted("%6d", atomRange.begin() + mol * numAtomsPerMolecule
323 + ril.il[j_mol + 2 + a] + 1);
325 log.ensureLineBreak();
327 i++;
328 if (i >= numMissingToPrint)
330 break;
333 j_mol += 2 + nral_rt(ftype);
337 return stream.toString();
340 /*! \brief Help print error output when interactions are missing */
341 static void printMissingInteractionsAtoms(const gmx::MDLogger& mdlog,
342 t_commrec* cr,
343 const gmx_mtop_t& mtop,
344 const InteractionDefinitions& idef)
346 const gmx_reverse_top_t& rt = *cr->dd->reverse_top;
348 /* Print the atoms in the missing interactions per molblock */
349 int a_end = 0;
350 for (const gmx_molblock_t& molb : mtop.molblock)
352 const gmx_moltype_t& moltype = mtop.moltype[molb.type];
353 const int a_start = a_end;
354 a_end = a_start + molb.nmol * moltype.atoms.nr;
355 const gmx::Range<int> atomRange(a_start, a_end);
357 auto warning = printMissingInteractionsMolblock(cr, rt, *(moltype.name), rt.ril_mt[molb.type],
358 atomRange, moltype.atoms.nr, molb.nmol, idef);
360 GMX_LOG(mdlog.warning).appendText(warning);
364 void dd_print_missing_interactions(const gmx::MDLogger& mdlog,
365 t_commrec* cr,
366 int local_count,
367 const gmx_mtop_t* top_global,
368 const gmx_localtop_t* top_local,
369 gmx::ArrayRef<const gmx::RVec> x,
370 const matrix box)
372 int ndiff_tot, cl[F_NRE], n, ndiff, rest_global, rest_local;
373 int ftype, nral;
374 gmx_domdec_t* dd;
376 dd = cr->dd;
378 GMX_LOG(mdlog.warning)
379 .appendText(
380 "Not all bonded interactions have been properly assigned to the domain "
381 "decomposition cells");
383 ndiff_tot = local_count - dd->nbonded_global;
385 for (ftype = 0; ftype < F_NRE; ftype++)
387 nral = NRAL(ftype);
388 cl[ftype] = top_local->idef.il[ftype].size() / (1 + nral);
391 gmx_sumi(F_NRE, cl, cr);
393 if (DDMASTER(dd))
395 GMX_LOG(mdlog.warning).appendText("A list of missing interactions:");
396 rest_global = dd->nbonded_global;
397 rest_local = local_count;
398 for (ftype = 0; ftype < F_NRE; ftype++)
400 /* In the reverse and local top all constraints are merged
401 * into F_CONSTR. So in the if statement we skip F_CONSTRNC
402 * and add these constraints when doing F_CONSTR.
404 if (((interaction_function[ftype].flags & IF_BOND)
405 && (dd->reverse_top->bBCheck || !(interaction_function[ftype].flags & IF_LIMZERO)))
406 || (dd->reverse_top->bConstr && ftype == F_CONSTR)
407 || (dd->reverse_top->bSettle && ftype == F_SETTLE))
409 n = gmx_mtop_ftype_count(top_global, ftype);
410 if (ftype == F_CONSTR)
412 n += gmx_mtop_ftype_count(top_global, F_CONSTRNC);
414 ndiff = cl[ftype] - n;
415 if (ndiff != 0)
417 GMX_LOG(mdlog.warning)
418 .appendTextFormatted("%20s of %6d missing %6d",
419 interaction_function[ftype].longname, n, -ndiff);
421 rest_global -= n;
422 rest_local -= cl[ftype];
426 ndiff = rest_local - rest_global;
427 if (ndiff != 0)
429 GMX_LOG(mdlog.warning).appendTextFormatted("%20s of %6d missing %6d", "exclusions", rest_global, -ndiff);
433 printMissingInteractionsAtoms(mdlog, cr, *top_global, top_local->idef);
434 write_dd_pdb("dd_dump_err", 0, "dump", top_global, cr, -1, as_rvec_array(x.data()), box);
436 std::string errorMessage;
438 if (ndiff_tot > 0)
440 errorMessage =
441 "One or more interactions were assigned to multiple domains of the domain "
442 "decompostion. Please report this bug.";
444 else
446 errorMessage = gmx::formatString(
447 "%d of the %d bonded interactions could not be calculated because some atoms "
448 "involved moved further apart than the multi-body cut-off distance (%g nm) or the "
449 "two-body cut-off distance (%g nm), see option -rdd, for pairs and tabulated bonds "
450 "also see option -ddcheck",
451 -ndiff_tot, cr->dd->nbonded_global, dd_cutoff_multibody(dd), dd_cutoff_twobody(dd));
453 gmx_fatal_collective(FARGS, cr->mpi_comm_mygroup, MASTER(cr), "%s", errorMessage.c_str());
456 /*! \brief Return global topology molecule information for global atom index \p i_gl */
457 static void global_atomnr_to_moltype_ind(const gmx_reverse_top_t* rt, int i_gl, int* mb, int* mt, int* mol, int* i_mol)
459 const MolblockIndices* mbi = rt->mbi.data();
460 int start = 0;
461 int end = rt->mbi.size(); /* exclusive */
462 int mid;
464 /* binary search for molblock_ind */
465 while (TRUE)
467 mid = (start + end) / 2;
468 if (i_gl >= mbi[mid].a_end)
470 start = mid + 1;
472 else if (i_gl < mbi[mid].a_start)
474 end = mid;
476 else
478 break;
482 *mb = mid;
483 mbi += mid;
485 *mt = mbi->type;
486 *mol = (i_gl - mbi->a_start) / mbi->natoms_mol;
487 *i_mol = (i_gl - mbi->a_start) - (*mol) * mbi->natoms_mol;
490 /*! \brief Returns the maximum number of exclusions per atom */
491 static int getMaxNumExclusionsPerAtom(const ListOfLists<int>& excls)
493 int maxNumExcls = 0;
494 for (gmx::index at = 0; at < excls.ssize(); at++)
496 const auto list = excls[at];
497 const int numExcls = list.ssize();
499 GMX_RELEASE_ASSERT(numExcls != 1 || list[0] == at,
500 "With 1 exclusion we expect a self-exclusion");
502 maxNumExcls = std::max(maxNumExcls, numExcls);
505 return maxNumExcls;
508 /*! \brief Run the reverse ilist generation and store it in r_il when \p bAssign = TRUE */
509 static int low_make_reverse_ilist(const InteractionLists& il_mt,
510 const t_atom* atom,
511 int* count,
512 gmx_bool bConstr,
513 gmx_bool bSettle,
514 gmx_bool bBCheck,
515 gmx::ArrayRef<const int> r_index,
516 gmx::ArrayRef<int> r_il,
517 gmx_bool bLinkToAllAtoms,
518 gmx_bool bAssign)
520 int ftype, j, nlink, link;
521 int a;
522 int nint;
524 nint = 0;
525 for (ftype = 0; ftype < F_NRE; ftype++)
527 if ((interaction_function[ftype].flags & (IF_BOND | IF_VSITE))
528 || (bConstr && (ftype == F_CONSTR || ftype == F_CONSTRNC)) || (bSettle && ftype == F_SETTLE))
530 const bool bVSite = ((interaction_function[ftype].flags & IF_VSITE) != 0U);
531 const int nral = NRAL(ftype);
532 const auto& il = il_mt[ftype];
533 for (int i = 0; i < il.size(); i += 1 + nral)
535 const int* ia = il.iatoms.data() + i;
536 if (bLinkToAllAtoms)
538 if (bVSite)
540 /* We don't need the virtual sites for the cg-links */
541 nlink = 0;
543 else
545 nlink = nral;
548 else
550 /* Couple to the first atom in the interaction */
551 nlink = 1;
553 for (link = 0; link < nlink; link++)
555 a = ia[1 + link];
556 if (bAssign)
558 GMX_ASSERT(!r_il.empty(), "with bAssign not allowed to be empty");
559 GMX_ASSERT(!r_index.empty(), "with bAssign not allowed to be empty");
560 r_il[r_index[a] + count[a]] = (ftype == F_CONSTRNC ? F_CONSTR : ftype);
561 r_il[r_index[a] + count[a] + 1] = ia[0];
562 for (j = 1; j < 1 + nral; j++)
564 /* Store the molecular atom number */
565 r_il[r_index[a] + count[a] + 1 + j] = ia[j];
568 if (interaction_function[ftype].flags & IF_VSITE)
570 if (bAssign)
572 /* Add an entry to iatoms for storing
573 * which of the constructing atoms are
574 * vsites again.
576 r_il[r_index[a] + count[a] + 2 + nral] = 0;
577 for (j = 2; j < 1 + nral; j++)
579 if (atom[ia[j]].ptype == eptVSite)
581 r_il[r_index[a] + count[a] + 2 + nral] |= (2 << j);
586 else
588 /* We do not count vsites since they are always
589 * uniquely assigned and can be assigned
590 * to multiple nodes with recursive vsites.
592 if (bBCheck || !(interaction_function[ftype].flags & IF_LIMZERO))
594 nint++;
597 count[a] += 2 + nral_rt(ftype);
603 return nint;
606 /*! \brief Make the reverse ilist: a list of bonded interactions linked to atoms */
607 static int make_reverse_ilist(const InteractionLists& ilist,
608 const t_atoms* atoms,
609 gmx_bool bConstr,
610 gmx_bool bSettle,
611 gmx_bool bBCheck,
612 gmx_bool bLinkToAllAtoms,
613 reverse_ilist_t* ril_mt)
615 int nat_mt, *count, i, nint_mt;
617 /* Count the interactions */
618 nat_mt = atoms->nr;
619 snew(count, nat_mt);
620 low_make_reverse_ilist(ilist, atoms->atom, count, bConstr, bSettle, bBCheck, {}, {},
621 bLinkToAllAtoms, FALSE);
623 ril_mt->index.push_back(0);
624 for (i = 0; i < nat_mt; i++)
626 ril_mt->index.push_back(ril_mt->index[i] + count[i]);
627 count[i] = 0;
629 ril_mt->il.resize(ril_mt->index[nat_mt]);
631 /* Store the interactions */
632 nint_mt = low_make_reverse_ilist(ilist, atoms->atom, count, bConstr, bSettle, bBCheck,
633 ril_mt->index, ril_mt->il, bLinkToAllAtoms, TRUE);
635 sfree(count);
637 ril_mt->numAtomsInMolecule = atoms->nr;
639 return nint_mt;
642 /*! \brief Generate the reverse topology */
643 static gmx_reverse_top_t make_reverse_top(const gmx_mtop_t* mtop,
644 gmx_bool bFE,
645 gmx_bool bConstr,
646 gmx_bool bSettle,
647 gmx_bool bBCheck,
648 int* nint)
650 gmx_reverse_top_t rt;
652 /* Should we include constraints (for SHAKE) in rt? */
653 rt.bConstr = bConstr;
654 rt.bSettle = bSettle;
655 rt.bBCheck = bBCheck;
657 rt.bInterAtomicInteractions = mtop->bIntermolecularInteractions;
658 rt.ril_mt.resize(mtop->moltype.size());
659 rt.ril_mt_tot_size = 0;
660 std::vector<int> nint_mt;
661 for (size_t mt = 0; mt < mtop->moltype.size(); mt++)
663 const gmx_moltype_t& molt = mtop->moltype[mt];
664 if (molt.atoms.nr > 1)
666 rt.bInterAtomicInteractions = true;
669 /* Make the atom to interaction list for this molecule type */
670 int numberOfInteractions = make_reverse_ilist(
671 molt.ilist, &molt.atoms, rt.bConstr, rt.bSettle, rt.bBCheck, FALSE, &rt.ril_mt[mt]);
672 nint_mt.push_back(numberOfInteractions);
674 rt.ril_mt_tot_size += rt.ril_mt[mt].index[molt.atoms.nr];
676 if (debug)
678 fprintf(debug, "The total size of the atom to interaction index is %d integers\n",
679 rt.ril_mt_tot_size);
682 *nint = 0;
683 for (const gmx_molblock_t& molblock : mtop->molblock)
685 *nint += molblock.nmol * nint_mt[molblock.type];
688 /* Make an intermolecular reverse top, if necessary */
689 rt.bIntermolecularInteractions = mtop->bIntermolecularInteractions;
690 if (rt.bIntermolecularInteractions)
692 t_atoms atoms_global;
694 atoms_global.nr = mtop->natoms;
695 atoms_global.atom = nullptr; /* Only used with virtual sites */
697 GMX_RELEASE_ASSERT(mtop->intermolecular_ilist,
698 "We should have an ilist when intermolecular interactions are on");
700 *nint += make_reverse_ilist(*mtop->intermolecular_ilist, &atoms_global, rt.bConstr,
701 rt.bSettle, rt.bBCheck, FALSE, &rt.ril_intermol);
704 if (bFE && gmx_mtop_bondeds_free_energy(mtop))
706 rt.ilsort = ilsortFE_UNSORTED;
708 else
710 rt.ilsort = ilsortNO_FE;
713 /* Make a molblock index for fast searching */
714 int i = 0;
715 for (size_t mb = 0; mb < mtop->molblock.size(); mb++)
717 const gmx_molblock_t& molb = mtop->molblock[mb];
718 const int numAtomsPerMol = mtop->moltype[molb.type].atoms.nr;
719 MolblockIndices mbi;
720 mbi.a_start = i;
721 i += molb.nmol * numAtomsPerMol;
722 mbi.a_end = i;
723 mbi.natoms_mol = numAtomsPerMol;
724 mbi.type = molb.type;
725 rt.mbi.push_back(mbi);
728 for (int th = 0; th < gmx_omp_nthreads_get(emntDomdec); th++)
730 rt.th_work.emplace_back(mtop->ffparams);
733 return rt;
736 void dd_make_reverse_top(FILE* fplog,
737 gmx_domdec_t* dd,
738 const gmx_mtop_t* mtop,
739 const gmx::VirtualSitesHandler* vsite,
740 const t_inputrec* ir,
741 gmx_bool bBCheck)
743 if (fplog)
745 fprintf(fplog, "\nLinking all bonded interactions to atoms\n");
748 /* If normal and/or settle constraints act only within charge groups,
749 * we can store them in the reverse top and simply assign them to domains.
750 * Otherwise we need to assign them to multiple domains and set up
751 * the parallel version constraint algorithm(s).
754 dd->reverse_top = new gmx_reverse_top_t;
755 *dd->reverse_top =
756 make_reverse_top(mtop, ir->efep != efepNO, !dd->comm->systemInfo.haveSplitConstraints,
757 !dd->comm->systemInfo.haveSplitSettles, bBCheck, &dd->nbonded_global);
759 dd->haveExclusions = false;
760 for (const gmx_molblock_t& molb : mtop->molblock)
762 const int maxNumExclusionsPerAtom = getMaxNumExclusionsPerAtom(mtop->moltype[molb.type].excls);
763 // We checked above that max 1 exclusion means only self exclusions
764 if (maxNumExclusionsPerAtom > 1)
766 dd->haveExclusions = true;
770 if (vsite && vsite->numInterUpdategroupVirtualSites() > 0)
772 if (fplog)
774 fprintf(fplog,
775 "There are %d inter update-group virtual sites,\n"
776 "will an extra communication step for selected coordinates and forces\n",
777 vsite->numInterUpdategroupVirtualSites());
779 init_domdec_vsites(dd, vsite->numInterUpdategroupVirtualSites());
782 if (dd->comm->systemInfo.haveSplitConstraints || dd->comm->systemInfo.haveSplitSettles)
784 init_domdec_constraints(dd, mtop);
786 if (fplog)
788 fprintf(fplog, "\n");
792 /*! \brief Store a vsite interaction at the end of \p il
794 * This routine is very similar to add_ifunc, but vsites interactions
795 * have more work to do than other kinds of interactions, and the
796 * complex way nral (and thus vector contents) depends on ftype
797 * confuses static analysis tools unless we fuse the vsite
798 * atom-indexing organization code with the ifunc-adding code, so that
799 * they can see that nral is the same value. */
800 static inline void add_ifunc_for_vsites(t_iatom* tiatoms,
801 const gmx_ga2la_t& ga2la,
802 int nral,
803 gmx_bool bHomeA,
804 int a,
805 int a_gl,
806 int a_mol,
807 const t_iatom* iatoms,
808 InteractionList* il)
810 /* Copy the type */
811 tiatoms[0] = iatoms[0];
813 if (bHomeA)
815 /* We know the local index of the first atom */
816 tiatoms[1] = a;
818 else
820 /* Convert later in make_local_vsites */
821 tiatoms[1] = -a_gl - 1;
824 GMX_ASSERT(nral >= 2 && nral <= 5, "Invalid nral for vsites");
825 for (int k = 2; k < 1 + nral; k++)
827 int ak_gl = a_gl + iatoms[k] - a_mol;
828 if (const int* homeIndex = ga2la.findHome(ak_gl))
830 tiatoms[k] = *homeIndex;
832 else
834 /* Copy the global index, convert later in make_local_vsites */
835 tiatoms[k] = -(ak_gl + 1);
837 // Note that ga2la_get_home always sets the third parameter if
838 // it returns TRUE
840 il->push_back(tiatoms[0], nral, tiatoms + 1);
843 /*! \brief Store a position restraint in idef and iatoms, complex because the parameters are different for each entry */
844 static void add_posres(int mol,
845 int a_mol,
846 int numAtomsInMolecule,
847 const gmx_molblock_t* molb,
848 t_iatom* iatoms,
849 const t_iparams* ip_in,
850 InteractionDefinitions* idef)
852 /* This position restraint has not been added yet,
853 * so it's index is the current number of position restraints.
855 const int n = idef->il[F_POSRES].size() / 2;
857 /* Get the position restraint coordinates from the molblock */
858 const int a_molb = mol * numAtomsInMolecule + a_mol;
859 GMX_ASSERT(a_molb < ssize(molb->posres_xA),
860 "We need a sufficient number of position restraint coordinates");
861 /* Copy the force constants */
862 t_iparams ip = ip_in[iatoms[0]];
863 ip.posres.pos0A[XX] = molb->posres_xA[a_molb][XX];
864 ip.posres.pos0A[YY] = molb->posres_xA[a_molb][YY];
865 ip.posres.pos0A[ZZ] = molb->posres_xA[a_molb][ZZ];
866 if (!molb->posres_xB.empty())
868 ip.posres.pos0B[XX] = molb->posres_xB[a_molb][XX];
869 ip.posres.pos0B[YY] = molb->posres_xB[a_molb][YY];
870 ip.posres.pos0B[ZZ] = molb->posres_xB[a_molb][ZZ];
872 else
874 ip.posres.pos0B[XX] = ip.posres.pos0A[XX];
875 ip.posres.pos0B[YY] = ip.posres.pos0A[YY];
876 ip.posres.pos0B[ZZ] = ip.posres.pos0A[ZZ];
878 /* Set the parameter index for idef->iparams_posres */
879 iatoms[0] = n;
880 idef->iparams_posres.push_back(ip);
882 GMX_ASSERT(int(idef->iparams_posres.size()) == n + 1,
883 "The index of the parameter type should match n");
886 /*! \brief Store a flat-bottomed position restraint in idef and iatoms, complex because the parameters are different for each entry */
887 static void add_fbposres(int mol,
888 int a_mol,
889 int numAtomsInMolecule,
890 const gmx_molblock_t* molb,
891 t_iatom* iatoms,
892 const t_iparams* ip_in,
893 InteractionDefinitions* idef)
895 /* This flat-bottom position restraint has not been added yet,
896 * so it's index is the current number of position restraints.
898 const int n = idef->il[F_FBPOSRES].size() / 2;
900 /* Get the position restraint coordinats from the molblock */
901 const int a_molb = mol * numAtomsInMolecule + a_mol;
902 GMX_ASSERT(a_molb < ssize(molb->posres_xA),
903 "We need a sufficient number of position restraint coordinates");
904 /* Copy the force constants */
905 t_iparams ip = ip_in[iatoms[0]];
906 /* Take reference positions from A position of normal posres */
907 ip.fbposres.pos0[XX] = molb->posres_xA[a_molb][XX];
908 ip.fbposres.pos0[YY] = molb->posres_xA[a_molb][YY];
909 ip.fbposres.pos0[ZZ] = molb->posres_xA[a_molb][ZZ];
911 /* Note: no B-type for flat-bottom posres */
913 /* Set the parameter index for idef->iparams_fbposres */
914 iatoms[0] = n;
915 idef->iparams_fbposres.push_back(ip);
917 GMX_ASSERT(int(idef->iparams_fbposres.size()) == n + 1,
918 "The index of the parameter type should match n");
921 /*! \brief Store a virtual site interaction, complex because of PBC and recursion */
922 static void add_vsite(const gmx_ga2la_t& ga2la,
923 gmx::ArrayRef<const int> index,
924 gmx::ArrayRef<const int> rtil,
925 int ftype,
926 int nral,
927 gmx_bool bHomeA,
928 int a,
929 int a_gl,
930 int a_mol,
931 const t_iatom* iatoms,
932 InteractionDefinitions* idef)
934 int k;
935 t_iatom tiatoms[1 + MAXATOMLIST];
936 int j, ftype_r, nral_r;
938 /* Add this interaction to the local topology */
939 add_ifunc_for_vsites(tiatoms, ga2la, nral, bHomeA, a, a_gl, a_mol, iatoms, &idef->il[ftype]);
941 if (iatoms[1 + nral])
943 /* Check for recursion */
944 for (k = 2; k < 1 + nral; k++)
946 if ((iatoms[1 + nral] & (2 << k)) && (tiatoms[k] < 0))
948 /* This construction atoms is a vsite and not a home atom */
949 if (gmx_debug_at)
951 fprintf(debug, "Constructing atom %d of vsite atom %d is a vsite and non-home\n",
952 iatoms[k] + 1, a_mol + 1);
954 /* Find the vsite construction */
956 /* Check all interactions assigned to this atom */
957 j = index[iatoms[k]];
958 while (j < index[iatoms[k] + 1])
960 ftype_r = rtil[j++];
961 nral_r = NRAL(ftype_r);
962 if (interaction_function[ftype_r].flags & IF_VSITE)
964 /* Add this vsite (recursion) */
965 add_vsite(ga2la, index, rtil, ftype_r, nral_r, FALSE, -1,
966 a_gl + iatoms[k] - iatoms[1], iatoms[k], rtil.data() + j, idef);
968 j += 1 + nral_rt(ftype_r);
975 /*! \brief Returns the squared distance between atoms \p i and \p j */
976 static real dd_dist2(t_pbc* pbc_null, const rvec* x, const int i, int j)
978 rvec dx;
980 if (pbc_null)
982 pbc_dx_aiuc(pbc_null, x[i], x[j], dx);
984 else
986 rvec_sub(x[i], x[j], dx);
989 return norm2(dx);
992 /*! \brief Append t_idef structures 1 to nsrc in src to *dest */
993 static void combine_idef(InteractionDefinitions* dest, gmx::ArrayRef<const thread_work_t> src)
995 int ftype;
997 for (ftype = 0; ftype < F_NRE; ftype++)
999 int n = 0;
1000 for (gmx::index s = 1; s < src.ssize(); s++)
1002 n += src[s].idef.il[ftype].size();
1004 if (n > 0)
1006 for (gmx::index s = 1; s < src.ssize(); s++)
1008 dest->il[ftype].append(src[s].idef.il[ftype]);
1011 /* Position restraints need an additional treatment */
1012 if (ftype == F_POSRES || ftype == F_FBPOSRES)
1014 int nposres = dest->il[ftype].size() / 2;
1015 std::vector<t_iparams>& iparams_dest =
1016 (ftype == F_POSRES ? dest->iparams_posres : dest->iparams_fbposres);
1018 /* Set nposres to the number of original position restraints in dest */
1019 for (gmx::index s = 1; s < src.ssize(); s++)
1021 nposres -= src[s].idef.il[ftype].size() / 2;
1024 for (gmx::index s = 1; s < src.ssize(); s++)
1026 const std::vector<t_iparams>& iparams_src =
1027 (ftype == F_POSRES ? src[s].idef.iparams_posres : src[s].idef.iparams_fbposres);
1028 iparams_dest.insert(iparams_dest.end(), iparams_src.begin(), iparams_src.end());
1030 /* Correct the indices into iparams_posres */
1031 for (int i = 0; i < src[s].idef.il[ftype].size() / 2; i++)
1033 /* Correct the index into iparams_posres */
1034 dest->il[ftype].iatoms[nposres * 2] = nposres;
1035 nposres++;
1038 GMX_RELEASE_ASSERT(
1039 int(iparams_dest.size()) == nposres,
1040 "The number of parameters should match the number of restraints");
1046 /*! \brief Check and when available assign bonded interactions for local atom i
1048 static inline void check_assign_interactions_atom(int i,
1049 int i_gl,
1050 int mol,
1051 int i_mol,
1052 int numAtomsInMolecule,
1053 gmx::ArrayRef<const int> index,
1054 gmx::ArrayRef<const int> rtil,
1055 gmx_bool bInterMolInteractions,
1056 int ind_start,
1057 int ind_end,
1058 const gmx_domdec_t* dd,
1059 const gmx_domdec_zones_t* zones,
1060 const gmx_molblock_t* molb,
1061 gmx_bool bRCheckMB,
1062 const ivec rcheck,
1063 gmx_bool bRCheck2B,
1064 real rc2,
1065 t_pbc* pbc_null,
1066 rvec* cg_cm,
1067 const t_iparams* ip_in,
1068 InteractionDefinitions* idef,
1069 int iz,
1070 gmx_bool bBCheck,
1071 int* nbonded_local)
1073 gmx::ArrayRef<const DDPairInteractionRanges> iZones = zones->iZones;
1075 int j = ind_start;
1076 while (j < ind_end)
1078 t_iatom tiatoms[1 + MAXATOMLIST];
1080 const int ftype = rtil[j++];
1081 auto iatoms = gmx::constArrayRefFromArray(rtil.data() + j, rtil.size() - j);
1082 const int nral = NRAL(ftype);
1083 if (interaction_function[ftype].flags & IF_VSITE)
1085 assert(!bInterMolInteractions);
1086 /* The vsite construction goes where the vsite itself is */
1087 if (iz == 0)
1089 add_vsite(*dd->ga2la, index, rtil, ftype, nral, TRUE, i, i_gl, i_mol, iatoms.data(), idef);
1091 j += 1 + nral + 2;
1093 else
1095 gmx_bool bUse;
1097 /* Copy the type */
1098 tiatoms[0] = iatoms[0];
1100 if (nral == 1)
1102 assert(!bInterMolInteractions);
1103 /* Assign single-body interactions to the home zone */
1104 if (iz == 0)
1106 bUse = TRUE;
1107 tiatoms[1] = i;
1108 if (ftype == F_POSRES)
1110 add_posres(mol, i_mol, numAtomsInMolecule, molb, tiatoms, ip_in, idef);
1112 else if (ftype == F_FBPOSRES)
1114 add_fbposres(mol, i_mol, numAtomsInMolecule, molb, tiatoms, ip_in, idef);
1117 else
1119 bUse = FALSE;
1122 else if (nral == 2)
1124 /* This is a two-body interaction, we can assign
1125 * analogous to the non-bonded assignments.
1127 int k_gl;
1129 if (!bInterMolInteractions)
1131 /* Get the global index using the offset in the molecule */
1132 k_gl = i_gl + iatoms[2] - i_mol;
1134 else
1136 k_gl = iatoms[2];
1138 if (const auto* entry = dd->ga2la->find(k_gl))
1140 int kz = entry->cell;
1141 if (kz >= zones->n)
1143 kz -= zones->n;
1145 /* Check zone interaction assignments */
1146 bUse = ((iz < iZones.ssize() && iz <= kz && iZones[iz].jZoneRange.isInRange(kz))
1147 || (kz < iZones.ssize() && iz > kz && iZones[kz].jZoneRange.isInRange(iz)));
1148 if (bUse)
1150 GMX_ASSERT(ftype != F_CONSTR || (iz == 0 && kz == 0),
1151 "Constraint assigned here should only involve home atoms");
1153 tiatoms[1] = i;
1154 tiatoms[2] = entry->la;
1155 /* If necessary check the cgcm distance */
1156 if (bRCheck2B && dd_dist2(pbc_null, cg_cm, tiatoms[1], tiatoms[2]) >= rc2)
1158 bUse = FALSE;
1162 else
1164 bUse = false;
1167 else
1169 /* Assign this multi-body bonded interaction to
1170 * the local node if we have all the atoms involved
1171 * (local or communicated) and the minimum zone shift
1172 * in each dimension is zero, for dimensions
1173 * with 2 DD cells an extra check may be necessary.
1175 ivec k_zero, k_plus;
1176 int k;
1178 bUse = TRUE;
1179 clear_ivec(k_zero);
1180 clear_ivec(k_plus);
1181 for (k = 1; k <= nral && bUse; k++)
1183 int k_gl;
1184 if (!bInterMolInteractions)
1186 /* Get the global index using the offset in the molecule */
1187 k_gl = i_gl + iatoms[k] - i_mol;
1189 else
1191 k_gl = iatoms[k];
1193 const auto* entry = dd->ga2la->find(k_gl);
1194 if (entry == nullptr || entry->cell >= zones->n)
1196 /* We do not have this atom of this interaction
1197 * locally, or it comes from more than one cell
1198 * away.
1200 bUse = FALSE;
1202 else
1204 int d;
1206 tiatoms[k] = entry->la;
1207 for (d = 0; d < DIM; d++)
1209 if (zones->shift[entry->cell][d] == 0)
1211 k_zero[d] = k;
1213 else
1215 k_plus[d] = k;
1220 bUse = (bUse && (k_zero[XX] != 0) && (k_zero[YY] != 0) && (k_zero[ZZ] != 0));
1221 if (bRCheckMB)
1223 int d;
1225 for (d = 0; (d < DIM && bUse); d++)
1227 /* Check if the cg_cm distance falls within
1228 * the cut-off to avoid possible multiple
1229 * assignments of bonded interactions.
1231 if (rcheck[d] && k_plus[d]
1232 && dd_dist2(pbc_null, cg_cm, tiatoms[k_zero[d]], tiatoms[k_plus[d]]) >= rc2)
1234 bUse = FALSE;
1239 if (bUse)
1241 /* Add this interaction to the local topology */
1242 idef->il[ftype].push_back(tiatoms[0], nral, tiatoms + 1);
1243 /* Sum so we can check in global_stat
1244 * if we have everything.
1246 if (bBCheck || !(interaction_function[ftype].flags & IF_LIMZERO))
1248 (*nbonded_local)++;
1251 j += 1 + nral;
1256 /*! \brief This function looks up and assigns bonded interactions for zone iz.
1258 * With thread parallelizing each thread acts on a different atom range:
1259 * at_start to at_end.
1261 static int make_bondeds_zone(gmx_domdec_t* dd,
1262 const gmx_domdec_zones_t* zones,
1263 const std::vector<gmx_molblock_t>& molb,
1264 gmx_bool bRCheckMB,
1265 ivec rcheck,
1266 gmx_bool bRCheck2B,
1267 real rc2,
1268 t_pbc* pbc_null,
1269 rvec* cg_cm,
1270 const t_iparams* ip_in,
1271 InteractionDefinitions* idef,
1272 int izone,
1273 const gmx::Range<int>& atomRange)
1275 int mb, mt, mol, i_mol;
1276 gmx_bool bBCheck;
1277 gmx_reverse_top_t* rt;
1278 int nbonded_local;
1280 rt = dd->reverse_top;
1282 bBCheck = rt->bBCheck;
1284 nbonded_local = 0;
1286 for (int i : atomRange)
1288 /* Get the global atom number */
1289 const int i_gl = dd->globalAtomIndices[i];
1290 global_atomnr_to_moltype_ind(rt, i_gl, &mb, &mt, &mol, &i_mol);
1291 /* Check all intramolecular interactions assigned to this atom */
1292 gmx::ArrayRef<const int> index = rt->ril_mt[mt].index;
1293 gmx::ArrayRef<const t_iatom> rtil = rt->ril_mt[mt].il;
1295 check_assign_interactions_atom(i, i_gl, mol, i_mol, rt->ril_mt[mt].numAtomsInMolecule,
1296 index, rtil, FALSE, index[i_mol], index[i_mol + 1], dd,
1297 zones, &molb[mb], bRCheckMB, rcheck, bRCheck2B, rc2,
1298 pbc_null, cg_cm, ip_in, idef, izone, bBCheck, &nbonded_local);
1301 if (rt->bIntermolecularInteractions)
1303 /* Check all intermolecular interactions assigned to this atom */
1304 index = rt->ril_intermol.index;
1305 rtil = rt->ril_intermol.il;
1307 check_assign_interactions_atom(i, i_gl, mol, i_mol, rt->ril_mt[mt].numAtomsInMolecule,
1308 index, rtil, TRUE, index[i_gl], index[i_gl + 1], dd, zones,
1309 &molb[mb], bRCheckMB, rcheck, bRCheck2B, rc2, pbc_null,
1310 cg_cm, ip_in, idef, izone, bBCheck, &nbonded_local);
1314 return nbonded_local;
1317 /*! \brief Set the exclusion data for i-zone \p iz */
1318 static void make_exclusions_zone(gmx_domdec_t* dd,
1319 gmx_domdec_zones_t* zones,
1320 const std::vector<gmx_moltype_t>& moltype,
1321 const int* cginfo,
1322 ListOfLists<int>* lexcls,
1323 int iz,
1324 int at_start,
1325 int at_end,
1326 const gmx::ArrayRef<const int> intermolecularExclusionGroup)
1328 const gmx_ga2la_t& ga2la = *dd->ga2la;
1330 const auto& jAtomRange = zones->iZones[iz].jAtomRange;
1332 const gmx::index oldNumLists = lexcls->ssize();
1334 std::vector<int> exclusionsForAtom;
1335 for (int at = at_start; at < at_end; at++)
1337 exclusionsForAtom.clear();
1339 if (GET_CGINFO_EXCL_INTER(cginfo[at]))
1341 int a_gl, mb, mt, mol, a_mol;
1343 /* Copy the exclusions from the global top */
1344 a_gl = dd->globalAtomIndices[at];
1345 global_atomnr_to_moltype_ind(dd->reverse_top, a_gl, &mb, &mt, &mol, &a_mol);
1346 const auto excls = moltype[mt].excls[a_mol];
1347 for (const int aj_mol : excls)
1349 if (const auto* jEntry = ga2la.find(a_gl + aj_mol - a_mol))
1351 /* This check is not necessary, but it can reduce
1352 * the number of exclusions in the list, which in turn
1353 * can speed up the pair list construction a bit.
1355 if (jAtomRange.isInRange(jEntry->la))
1357 exclusionsForAtom.push_back(jEntry->la);
1363 bool isExcludedAtom = !intermolecularExclusionGroup.empty()
1364 && std::find(intermolecularExclusionGroup.begin(),
1365 intermolecularExclusionGroup.end(), dd->globalAtomIndices[at])
1366 != intermolecularExclusionGroup.end();
1368 if (isExcludedAtom)
1370 for (int qmAtomGlobalIndex : intermolecularExclusionGroup)
1372 if (const auto* entry = dd->ga2la->find(qmAtomGlobalIndex))
1374 exclusionsForAtom.push_back(entry->la);
1379 /* Append the exclusions for this atom to the topology */
1380 lexcls->pushBack(exclusionsForAtom);
1383 GMX_RELEASE_ASSERT(
1384 lexcls->ssize() - oldNumLists == at_end - at_start,
1385 "The number of exclusion list should match the number of atoms in the range");
1388 /*! \brief Generate and store all required local bonded interactions in \p idef and local exclusions in \p lexcls */
1389 static int make_local_bondeds_excls(gmx_domdec_t* dd,
1390 gmx_domdec_zones_t* zones,
1391 const gmx_mtop_t* mtop,
1392 const int* cginfo,
1393 gmx_bool bRCheckMB,
1394 ivec rcheck,
1395 gmx_bool bRCheck2B,
1396 real rc,
1397 t_pbc* pbc_null,
1398 rvec* cg_cm,
1399 InteractionDefinitions* idef,
1400 ListOfLists<int>* lexcls,
1401 int* excl_count)
1403 int nzone_bondeds;
1404 int cg0, cg1;
1405 real rc2;
1406 int nbonded_local;
1407 gmx_reverse_top_t* rt;
1409 if (dd->reverse_top->bInterAtomicInteractions)
1411 nzone_bondeds = zones->n;
1413 else
1415 /* Only single charge group (or atom) molecules, so interactions don't
1416 * cross zone boundaries and we only need to assign in the home zone.
1418 nzone_bondeds = 1;
1421 /* We only use exclusions from i-zones to i- and j-zones */
1422 const int numIZonesForExclusions = (dd->haveExclusions ? zones->iZones.size() : 0);
1424 rt = dd->reverse_top;
1426 rc2 = rc * rc;
1428 /* Clear the counts */
1429 idef->clear();
1430 nbonded_local = 0;
1432 lexcls->clear();
1433 *excl_count = 0;
1435 for (int izone = 0; izone < nzone_bondeds; izone++)
1437 cg0 = zones->cg_range[izone];
1438 cg1 = zones->cg_range[izone + 1];
1440 const int numThreads = rt->th_work.size();
1441 #pragma omp parallel for num_threads(numThreads) schedule(static)
1442 for (int thread = 0; thread < numThreads; thread++)
1446 int cg0t, cg1t;
1447 InteractionDefinitions* idef_t;
1449 cg0t = cg0 + ((cg1 - cg0) * thread) / numThreads;
1450 cg1t = cg0 + ((cg1 - cg0) * (thread + 1)) / numThreads;
1452 if (thread == 0)
1454 idef_t = idef;
1456 else
1458 idef_t = &rt->th_work[thread].idef;
1459 idef_t->clear();
1462 rt->th_work[thread].nbonded = make_bondeds_zone(
1463 dd, zones, mtop->molblock, bRCheckMB, rcheck, bRCheck2B, rc2, pbc_null,
1464 cg_cm, idef->iparams.data(), idef_t, izone, gmx::Range<int>(cg0t, cg1t));
1466 if (izone < numIZonesForExclusions)
1468 ListOfLists<int>* excl_t;
1469 if (thread == 0)
1471 // Thread 0 stores exclusions directly in the final storage
1472 excl_t = lexcls;
1474 else
1476 // Threads > 0 store in temporary storage, starting at list index 0
1477 excl_t = &rt->th_work[thread].excl;
1478 excl_t->clear();
1481 /* No charge groups and no distance check required */
1482 make_exclusions_zone(dd, zones, mtop->moltype, cginfo, excl_t, izone, cg0t,
1483 cg1t, mtop->intermolecularExclusionGroup);
1486 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR
1489 if (rt->th_work.size() > 1)
1491 combine_idef(idef, rt->th_work);
1494 for (const thread_work_t& th_work : rt->th_work)
1496 nbonded_local += th_work.nbonded;
1499 if (izone < numIZonesForExclusions)
1501 for (std::size_t th = 1; th < rt->th_work.size(); th++)
1503 lexcls->appendListOfLists(rt->th_work[th].excl);
1505 for (const thread_work_t& th_work : rt->th_work)
1507 *excl_count += th_work.excl_count;
1512 if (debug)
1514 fprintf(debug, "We have %d exclusions, check count %d\n", lexcls->numElements(), *excl_count);
1517 return nbonded_local;
1520 void dd_make_local_top(gmx_domdec_t* dd,
1521 gmx_domdec_zones_t* zones,
1522 int npbcdim,
1523 matrix box,
1524 rvec cellsize_min,
1525 const ivec npulse,
1526 t_forcerec* fr,
1527 rvec* cgcm_or_x,
1528 const gmx_mtop_t& mtop,
1529 gmx_localtop_t* ltop)
1531 gmx_bool bRCheckMB, bRCheck2B;
1532 real rc = -1;
1533 ivec rcheck;
1534 int d, nexcl;
1535 t_pbc pbc, *pbc_null = nullptr;
1537 if (debug)
1539 fprintf(debug, "Making local topology\n");
1542 bRCheckMB = FALSE;
1543 bRCheck2B = FALSE;
1545 if (dd->reverse_top->bInterAtomicInteractions)
1547 /* We need to check to which cell bondeds should be assigned */
1548 rc = dd_cutoff_twobody(dd);
1549 if (debug)
1551 fprintf(debug, "Two-body bonded cut-off distance is %g\n", rc);
1554 /* Should we check cg_cm distances when assigning bonded interactions? */
1555 for (d = 0; d < DIM; d++)
1557 rcheck[d] = FALSE;
1558 /* Only need to check for dimensions where the part of the box
1559 * that is not communicated is smaller than the cut-off.
1561 if (d < npbcdim && dd->numCells[d] > 1
1562 && (dd->numCells[d] - npulse[d]) * cellsize_min[d] < 2 * rc)
1564 if (dd->numCells[d] == 2)
1566 rcheck[d] = TRUE;
1567 bRCheckMB = TRUE;
1569 /* Check for interactions between two atoms,
1570 * where we can allow interactions up to the cut-off,
1571 * instead of up to the smallest cell dimension.
1573 bRCheck2B = TRUE;
1575 if (debug)
1577 fprintf(debug, "dim %d cellmin %f bonded rcheck[%d] = %d, bRCheck2B = %s\n", d,
1578 cellsize_min[d], d, rcheck[d], gmx::boolToString(bRCheck2B));
1581 if (bRCheckMB || bRCheck2B)
1583 if (fr->bMolPBC)
1585 pbc_null = set_pbc_dd(&pbc, fr->pbcType, dd->numCells, TRUE, box);
1587 else
1589 pbc_null = nullptr;
1594 dd->nbonded_local = make_local_bondeds_excls(dd, zones, &mtop, fr->cginfo.data(), bRCheckMB,
1595 rcheck, bRCheck2B, rc, pbc_null, cgcm_or_x,
1596 &ltop->idef, &ltop->excls, &nexcl);
1598 /* The ilist is not sorted yet,
1599 * we can only do this when we have the charge arrays.
1601 ltop->idef.ilsort = ilsortUNKNOWN;
1604 void dd_sort_local_top(gmx_domdec_t* dd, const t_mdatoms* mdatoms, gmx_localtop_t* ltop)
1606 if (dd->reverse_top->ilsort == ilsortNO_FE)
1608 ltop->idef.ilsort = ilsortNO_FE;
1610 else
1612 gmx_sort_ilist_fe(&ltop->idef, mdatoms->chargeA, mdatoms->chargeB);
1616 void dd_init_local_state(gmx_domdec_t* dd, const t_state* state_global, t_state* state_local)
1618 int buf[NITEM_DD_INIT_LOCAL_STATE];
1620 if (DDMASTER(dd))
1622 buf[0] = state_global->flags;
1623 buf[1] = state_global->ngtc;
1624 buf[2] = state_global->nnhpres;
1625 buf[3] = state_global->nhchainlength;
1626 buf[4] = state_global->dfhist ? state_global->dfhist->nlambda : 0;
1628 dd_bcast(dd, NITEM_DD_INIT_LOCAL_STATE * sizeof(int), buf);
1630 init_gtc_state(state_local, buf[1], buf[2], buf[3]);
1631 init_dfhist_state(state_local, buf[4]);
1632 state_local->flags = buf[0];
1635 /*! \brief Check if a link is stored in \p link between charge groups \p cg_gl and \p cg_gl_j and if not so, store a link */
1636 static void check_link(t_blocka* link, int cg_gl, int cg_gl_j)
1638 int k;
1639 gmx_bool bFound;
1641 bFound = FALSE;
1642 for (k = link->index[cg_gl]; k < link->index[cg_gl + 1]; k++)
1644 GMX_RELEASE_ASSERT(link->a, "Inconsistent NULL pointer while making charge-group links");
1645 if (link->a[k] == cg_gl_j)
1647 bFound = TRUE;
1650 if (!bFound)
1652 GMX_RELEASE_ASSERT(link->a || link->index[cg_gl + 1] + 1 > link->nalloc_a,
1653 "Inconsistent allocation of link");
1654 /* Add this charge group link */
1655 if (link->index[cg_gl + 1] + 1 > link->nalloc_a)
1657 link->nalloc_a = over_alloc_large(link->index[cg_gl + 1] + 1);
1658 srenew(link->a, link->nalloc_a);
1660 link->a[link->index[cg_gl + 1]] = cg_gl_j;
1661 link->index[cg_gl + 1]++;
1665 t_blocka* makeBondedLinks(const gmx_mtop_t& mtop, gmx::ArrayRef<cginfo_mb_t> cginfo_mb)
1667 t_blocka* link;
1668 cginfo_mb_t* cgi_mb;
1670 /* For each atom make a list of other atoms in the system
1671 * that a linked to it via bonded interactions
1672 * which are also stored in reverse_top.
1675 reverse_ilist_t ril_intermol;
1676 if (mtop.bIntermolecularInteractions)
1678 t_atoms atoms;
1680 atoms.nr = mtop.natoms;
1681 atoms.atom = nullptr;
1683 GMX_RELEASE_ASSERT(mtop.intermolecular_ilist,
1684 "We should have an ilist when intermolecular interactions are on");
1686 make_reverse_ilist(*mtop.intermolecular_ilist, &atoms, FALSE, FALSE, FALSE, TRUE, &ril_intermol);
1689 snew(link, 1);
1690 snew(link->index, mtop.natoms + 1);
1691 link->nalloc_a = 0;
1692 link->a = nullptr;
1694 link->index[0] = 0;
1695 int cg_offset = 0;
1696 int ncgi = 0;
1697 for (size_t mb = 0; mb < mtop.molblock.size(); mb++)
1699 const gmx_molblock_t& molb = mtop.molblock[mb];
1700 if (molb.nmol == 0)
1702 continue;
1704 const gmx_moltype_t& molt = mtop.moltype[molb.type];
1705 /* Make a reverse ilist in which the interactions are linked
1706 * to all atoms, not only the first atom as in gmx_reverse_top.
1707 * The constraints are discarded here.
1709 reverse_ilist_t ril;
1710 make_reverse_ilist(molt.ilist, &molt.atoms, FALSE, FALSE, FALSE, TRUE, &ril);
1712 cgi_mb = &cginfo_mb[mb];
1714 int mol;
1715 for (mol = 0; mol < (mtop.bIntermolecularInteractions ? molb.nmol : 1); mol++)
1717 for (int a = 0; a < molt.atoms.nr; a++)
1719 int cg_gl = cg_offset + a;
1720 link->index[cg_gl + 1] = link->index[cg_gl];
1721 int i = ril.index[a];
1722 while (i < ril.index[a + 1])
1724 int ftype = ril.il[i++];
1725 int nral = NRAL(ftype);
1726 /* Skip the ifunc index */
1727 i++;
1728 for (int j = 0; j < nral; j++)
1730 int aj = ril.il[i + j];
1731 if (aj != a)
1733 check_link(link, cg_gl, cg_offset + aj);
1736 i += nral_rt(ftype);
1739 if (mtop.bIntermolecularInteractions)
1741 int i = ril_intermol.index[cg_gl];
1742 while (i < ril_intermol.index[cg_gl + 1])
1744 int ftype = ril_intermol.il[i++];
1745 int nral = NRAL(ftype);
1746 /* Skip the ifunc index */
1747 i++;
1748 for (int j = 0; j < nral; j++)
1750 /* Here we assume we have no charge groups;
1751 * this has been checked above.
1753 int aj = ril_intermol.il[i + j];
1754 check_link(link, cg_gl, aj);
1756 i += nral_rt(ftype);
1759 if (link->index[cg_gl + 1] - link->index[cg_gl] > 0)
1761 SET_CGINFO_BOND_INTER(cgi_mb->cginfo[a]);
1762 ncgi++;
1766 cg_offset += molt.atoms.nr;
1768 int nlink_mol = link->index[cg_offset] - link->index[cg_offset - molt.atoms.nr];
1770 if (debug)
1772 fprintf(debug, "molecule type '%s' %d atoms has %d atom links through bonded interac.\n",
1773 *molt.name, molt.atoms.nr, nlink_mol);
1776 if (molb.nmol > mol)
1778 /* Copy the data for the rest of the molecules in this block */
1779 link->nalloc_a += (molb.nmol - mol) * nlink_mol;
1780 srenew(link->a, link->nalloc_a);
1781 for (; mol < molb.nmol; mol++)
1783 for (int a = 0; a < molt.atoms.nr; a++)
1785 int cg_gl = cg_offset + a;
1786 link->index[cg_gl + 1] = link->index[cg_gl + 1 - molt.atoms.nr] + nlink_mol;
1787 for (int j = link->index[cg_gl]; j < link->index[cg_gl + 1]; j++)
1789 link->a[j] = link->a[j - nlink_mol] + molt.atoms.nr;
1791 if (link->index[cg_gl + 1] - link->index[cg_gl] > 0
1792 && cg_gl - cgi_mb->cg_start < cgi_mb->cg_mod)
1794 SET_CGINFO_BOND_INTER(cgi_mb->cginfo[cg_gl - cgi_mb->cg_start]);
1795 ncgi++;
1798 cg_offset += molt.atoms.nr;
1803 if (debug)
1805 fprintf(debug, "Of the %d atoms %d are linked via bonded interactions\n", mtop.natoms, ncgi);
1808 return link;
1811 typedef struct
1813 real r2;
1814 int ftype;
1815 int a1;
1816 int a2;
1817 } bonded_distance_t;
1819 /*! \brief Compare distance^2 \p r2 against the distance in \p bd and if larger store it along with \p ftype and atom indices \p a1 and \p a2 */
1820 static void update_max_bonded_distance(real r2, int ftype, int a1, int a2, bonded_distance_t* bd)
1822 if (r2 > bd->r2)
1824 bd->r2 = r2;
1825 bd->ftype = ftype;
1826 bd->a1 = a1;
1827 bd->a2 = a2;
1831 /*! \brief Set the distance, function type and atom indices for the longest distance between atoms of molecule type \p molt for two-body and multi-body bonded interactions */
1832 static void bonded_cg_distance_mol(const gmx_moltype_t* molt,
1833 gmx_bool bBCheck,
1834 gmx_bool bExcl,
1835 ArrayRef<const RVec> x,
1836 bonded_distance_t* bd_2b,
1837 bonded_distance_t* bd_mb)
1839 for (int ftype = 0; ftype < F_NRE; ftype++)
1841 if (dd_check_ftype(ftype, bBCheck, FALSE, FALSE))
1843 const auto& il = molt->ilist[ftype];
1844 int nral = NRAL(ftype);
1845 if (nral > 1)
1847 for (int i = 0; i < il.size(); i += 1 + nral)
1849 for (int ai = 0; ai < nral; ai++)
1851 int atomI = il.iatoms[i + 1 + ai];
1852 for (int aj = ai + 1; aj < nral; aj++)
1854 int atomJ = il.iatoms[i + 1 + aj];
1855 if (atomI != atomJ)
1857 real rij2 = distance2(x[atomI], x[atomJ]);
1859 update_max_bonded_distance(rij2, ftype, atomI, atomJ,
1860 (nral == 2) ? bd_2b : bd_mb);
1868 if (bExcl)
1870 const auto& excls = molt->excls;
1871 for (gmx::index ai = 0; ai < excls.ssize(); ai++)
1873 for (const int aj : excls[ai])
1875 if (ai != aj)
1877 real rij2 = distance2(x[ai], x[aj]);
1879 /* There is no function type for exclusions, use -1 */
1880 update_max_bonded_distance(rij2, -1, ai, aj, bd_2b);
1887 /*! \brief Set the distance, function type and atom indices for the longest atom distance involved in intermolecular interactions for two-body and multi-body bonded interactions */
1888 static void bonded_distance_intermol(const InteractionLists& ilists_intermol,
1889 gmx_bool bBCheck,
1890 ArrayRef<const RVec> x,
1891 PbcType pbcType,
1892 const matrix box,
1893 bonded_distance_t* bd_2b,
1894 bonded_distance_t* bd_mb)
1896 t_pbc pbc;
1898 set_pbc(&pbc, pbcType, box);
1900 for (int ftype = 0; ftype < F_NRE; ftype++)
1902 if (dd_check_ftype(ftype, bBCheck, FALSE, FALSE))
1904 const auto& il = ilists_intermol[ftype];
1905 int nral = NRAL(ftype);
1907 /* No nral>1 check here, since intermol interactions always
1908 * have nral>=2 (and the code is also correct for nral=1).
1910 for (int i = 0; i < il.size(); i += 1 + nral)
1912 for (int ai = 0; ai < nral; ai++)
1914 int atom_i = il.iatoms[i + 1 + ai];
1916 for (int aj = ai + 1; aj < nral; aj++)
1918 rvec dx;
1919 real rij2;
1921 int atom_j = il.iatoms[i + 1 + aj];
1923 pbc_dx(&pbc, x[atom_i], x[atom_j], dx);
1925 rij2 = norm2(dx);
1927 update_max_bonded_distance(rij2, ftype, atom_i, atom_j, (nral == 2) ? bd_2b : bd_mb);
1935 //! Returns whether \p molt has at least one virtual site
1936 static bool moltypeHasVsite(const gmx_moltype_t& molt)
1938 bool hasVsite = false;
1939 for (int i = 0; i < F_NRE; i++)
1941 if ((interaction_function[i].flags & IF_VSITE) && !molt.ilist[i].empty())
1943 hasVsite = true;
1947 return hasVsite;
1950 //! Returns coordinates not broken over PBC for a molecule
1951 static void getWholeMoleculeCoordinates(const gmx_moltype_t* molt,
1952 const gmx_ffparams_t* ffparams,
1953 PbcType pbcType,
1954 t_graph* graph,
1955 const matrix box,
1956 ArrayRef<const RVec> x,
1957 ArrayRef<RVec> xs)
1959 int n, i;
1961 if (pbcType != PbcType::No)
1963 mk_mshift(nullptr, graph, pbcType, box, as_rvec_array(x.data()));
1965 shift_x(graph, box, as_rvec_array(x.data()), as_rvec_array(xs.data()));
1966 /* By doing an extra mk_mshift the molecules that are broken
1967 * because they were e.g. imported from another software
1968 * will be made whole again. Such are the healing powers
1969 * of GROMACS.
1971 mk_mshift(nullptr, graph, pbcType, box, as_rvec_array(xs.data()));
1973 else
1975 /* We copy the coordinates so the original coordinates remain
1976 * unchanged, just to be 100% sure that we do not affect
1977 * binary reproducibility of simulations.
1979 n = molt->atoms.nr;
1980 for (i = 0; i < n; i++)
1982 copy_rvec(x[i], xs[i]);
1986 if (moltypeHasVsite(*molt))
1988 gmx::constructVirtualSites(xs, ffparams->iparams, molt->ilist);
1992 void dd_bonded_cg_distance(const gmx::MDLogger& mdlog,
1993 const gmx_mtop_t* mtop,
1994 const t_inputrec* ir,
1995 ArrayRef<const RVec> x,
1996 const matrix box,
1997 gmx_bool bBCheck,
1998 real* r_2b,
1999 real* r_mb)
2001 gmx_bool bExclRequired;
2002 int at_offset;
2003 bonded_distance_t bd_2b = { 0, -1, -1, -1 };
2004 bonded_distance_t bd_mb = { 0, -1, -1, -1 };
2006 bExclRequired = inputrecExclForces(ir);
2008 *r_2b = 0;
2009 *r_mb = 0;
2010 at_offset = 0;
2011 for (const gmx_molblock_t& molb : mtop->molblock)
2013 const gmx_moltype_t& molt = mtop->moltype[molb.type];
2014 if (molt.atoms.nr == 1 || molb.nmol == 0)
2016 at_offset += molb.nmol * molt.atoms.nr;
2018 else
2020 t_graph graph;
2021 if (ir->pbcType != PbcType::No)
2023 graph = mk_graph_moltype(molt);
2026 std::vector<RVec> xs(molt.atoms.nr);
2027 for (int mol = 0; mol < molb.nmol; mol++)
2029 getWholeMoleculeCoordinates(&molt, &mtop->ffparams, ir->pbcType, &graph, box,
2030 x.subArray(at_offset, molt.atoms.nr), xs);
2032 bonded_distance_t bd_mol_2b = { 0, -1, -1, -1 };
2033 bonded_distance_t bd_mol_mb = { 0, -1, -1, -1 };
2035 bonded_cg_distance_mol(&molt, bBCheck, bExclRequired, xs, &bd_mol_2b, &bd_mol_mb);
2037 /* Process the mol data adding the atom index offset */
2038 update_max_bonded_distance(bd_mol_2b.r2, bd_mol_2b.ftype, at_offset + bd_mol_2b.a1,
2039 at_offset + bd_mol_2b.a2, &bd_2b);
2040 update_max_bonded_distance(bd_mol_mb.r2, bd_mol_mb.ftype, at_offset + bd_mol_mb.a1,
2041 at_offset + bd_mol_mb.a2, &bd_mb);
2043 at_offset += molt.atoms.nr;
2048 if (mtop->bIntermolecularInteractions)
2050 GMX_RELEASE_ASSERT(mtop->intermolecular_ilist,
2051 "We should have an ilist when intermolecular interactions are on");
2053 bonded_distance_intermol(*mtop->intermolecular_ilist, bBCheck, x, ir->pbcType, box, &bd_2b, &bd_mb);
2056 *r_2b = sqrt(bd_2b.r2);
2057 *r_mb = sqrt(bd_mb.r2);
2059 if (*r_2b > 0 || *r_mb > 0)
2061 GMX_LOG(mdlog.info).appendText("Initial maximum distances in bonded interactions:");
2062 if (*r_2b > 0)
2064 GMX_LOG(mdlog.info)
2065 .appendTextFormatted(
2066 " two-body bonded interactions: %5.3f nm, %s, atoms %d %d", *r_2b,
2067 (bd_2b.ftype >= 0) ? interaction_function[bd_2b.ftype].longname : "Exclusion",
2068 bd_2b.a1 + 1, bd_2b.a2 + 1);
2070 if (*r_mb > 0)
2072 GMX_LOG(mdlog.info)
2073 .appendTextFormatted(
2074 " multi-body bonded interactions: %5.3f nm, %s, atoms %d %d", *r_mb,
2075 interaction_function[bd_mb.ftype].longname, bd_mb.a1 + 1, bd_mb.a2 + 1);