Split lines with many copyright years
[gromacs.git] / src / gromacs / nbnxm / pairlistsets.h
blob9692e11169b27f773dd9c54f0630f9705e751943
1 /*
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.
37 /*! \internal \file
39 * \brief
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
51 #include <memory>
53 #include "gromacs/mdtypes/locality.h"
55 #include "pairlistparams.h"
57 struct nbnxn_atomdata_t;
58 class PairlistSet;
59 enum class PairlistType;
60 class PairSearch;
61 struct t_nrnb;
63 namespace gmx
65 template<typename>
66 class ListOfLists;
69 class PairlistSets
71 public:
72 PairlistSets(const PairlistParams& pairlistParams,
73 bool haveMultipleDomains,
74 int minimumIlistCountForGpuBalancing);
76 //! Construct the pairlist set for the given locality
77 void construct(gmx::InteractionLocality iLocality,
78 PairSearch* pairSearch,
79 nbnxn_atomdata_t* nbat,
80 const gmx::ListOfLists<int>& exclusions,
81 int64_t step,
82 t_nrnb* nrnb);
84 //! Dispatches the dynamic pruning kernel for the given locality
85 void dispatchPruneKernel(gmx::InteractionLocality iLocality,
86 const nbnxn_atomdata_t* nbat,
87 const rvec* shift_vec);
89 //! Returns the pair list parameters
90 const PairlistParams& params() const { return params_; }
92 //! Returns the number of steps performed with the current pair list
93 int numStepsWithPairlist(int64_t step) const
95 return static_cast<int>(step - outerListCreationStep_);
98 //! Returns whether step is a dynamic list pruning step, for CPU lists
99 bool isDynamicPruningStepCpu(int64_t step) const
101 return (params_.useDynamicPruning && numStepsWithPairlist(step) % params_.nstlistPrune == 0);
104 //! Returns whether step is a dynamic list pruning step, for GPU lists
105 bool isDynamicPruningStepGpu(int64_t step) const
107 const int age = numStepsWithPairlist(step);
109 return (params_.useDynamicPruning && age > 0 && age < params_.lifetime
110 && (params_.haveMultipleDomains || age % 2 == 0));
113 //! Changes the pair-list outer and inner radius
114 void changePairlistRadii(real rlistOuter, real rlistInner)
116 params_.rlistOuter = rlistOuter;
117 params_.rlistInner = rlistInner;
120 //! Returns the pair-list set for the given locality
121 const PairlistSet& pairlistSet(gmx::InteractionLocality iLocality) const
123 if (iLocality == gmx::InteractionLocality::Local)
125 return *localSet_;
127 else
129 GMX_ASSERT(nonlocalSet_, "Need a non-local set when requesting access");
130 return *nonlocalSet_;
134 private:
135 //! Returns the pair-list set for the given locality
136 PairlistSet& pairlistSet(gmx::InteractionLocality iLocality)
138 if (iLocality == gmx::InteractionLocality::Local)
140 return *localSet_;
142 else
144 GMX_ASSERT(nonlocalSet_, "Need a non-local set when requesting access");
145 return *nonlocalSet_;
149 //! Parameters for the search and list pruning setup
150 PairlistParams params_;
151 //! Pair list balancing parameter for use with GPU
152 int minimumIlistCountForGpuBalancing_;
153 //! Local pairlist set
154 std::unique_ptr<PairlistSet> localSet_;
155 //! Non-local pairlist set
156 std::unique_ptr<PairlistSet> nonlocalSet_;
157 //! MD step at with the outer lists in pairlistSets_ were created
158 int64_t outerListCreationStep_;
161 #endif