2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,2015,2017 by the GROMACS development team.
5 * Copyright (c) 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.
40 * Declares the PairlistSets class
42 * This class holds the local and non-local pairlist sets.
44 * \author Berk Hess <hess@kth.se>
45 * \ingroup module_nbnxm
48 #ifndef GMX_NBNXM_PAIRLISTSETS_H
49 #define GMX_NBNXM_PAIRLISTSETS_H
53 #include "gromacs/mdtypes/locality.h"
55 #include "pairlistparams.h"
57 struct nbnxn_atomdata_t
;
59 enum class PairlistType
;
69 //! Contains sets of pairlists \internal
74 PairlistSets(const PairlistParams
& pairlistParams
,
75 bool haveMultipleDomains
,
76 int minimumIlistCountForGpuBalancing
);
78 //! Construct the pairlist set for the given locality
79 void construct(gmx::InteractionLocality iLocality
,
80 PairSearch
* pairSearch
,
81 nbnxn_atomdata_t
* nbat
,
82 const gmx::ListOfLists
<int>& exclusions
,
86 //! Dispatches the dynamic pruning kernel for the given locality
87 void dispatchPruneKernel(gmx::InteractionLocality iLocality
,
88 const nbnxn_atomdata_t
* nbat
,
89 const rvec
* shift_vec
);
91 //! Returns the pair list parameters
92 const PairlistParams
& params() const { return params_
; }
94 //! Returns the number of steps performed with the current pair list
95 int numStepsWithPairlist(int64_t step
) const
97 return static_cast<int>(step
- outerListCreationStep_
);
100 //! Returns whether step is a dynamic list pruning step, for CPU lists
101 bool isDynamicPruningStepCpu(int64_t step
) const
103 return (params_
.useDynamicPruning
&& numStepsWithPairlist(step
) % params_
.nstlistPrune
== 0);
106 //! Returns whether step is a dynamic list pruning step, for GPU lists
107 bool isDynamicPruningStepGpu(int64_t step
) const
109 const int age
= numStepsWithPairlist(step
);
111 return (params_
.useDynamicPruning
&& age
> 0 && age
< params_
.lifetime
112 && step
% params_
.mtsFactor
== 0
113 && (params_
.haveMultipleDomains
|| age
% (2 * params_
.mtsFactor
) == 0));
116 //! Changes the pair-list outer and inner radius
117 void changePairlistRadii(real rlistOuter
, real rlistInner
)
119 params_
.rlistOuter
= rlistOuter
;
120 params_
.rlistInner
= rlistInner
;
123 //! Returns the pair-list set for the given locality
124 const PairlistSet
& pairlistSet(gmx::InteractionLocality iLocality
) const
126 if (iLocality
== gmx::InteractionLocality::Local
)
132 GMX_ASSERT(nonlocalSet_
, "Need a non-local set when requesting access");
133 return *nonlocalSet_
;
138 //! Returns the pair-list set for the given locality
139 PairlistSet
& pairlistSet(gmx::InteractionLocality iLocality
)
141 if (iLocality
== gmx::InteractionLocality::Local
)
147 GMX_ASSERT(nonlocalSet_
, "Need a non-local set when requesting access");
148 return *nonlocalSet_
;
152 //! Parameters for the search and list pruning setup
153 PairlistParams params_
;
154 //! Pair list balancing parameter for use with GPU
155 int minimumIlistCountForGpuBalancing_
;
156 //! Local pairlist set
157 std::unique_ptr
<PairlistSet
> localSet_
;
158 //! Non-local pairlist set
159 std::unique_ptr
<PairlistSet
> nonlocalSet_
;
160 //! MD step at with the outer lists in pairlistSets_ were created
161 int64_t outerListCreationStep_
;