Prepare for first 2021 patch release
[alexxy/gromacs.git] / api / nblib / gmxsetup.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2020,2021, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  * \brief Translation layer to GROMACS data structures for force calculations.
37  *
38  * \author Victor Holanda <victor.holanda@cscs.ch>
39  * \author Joe Jordan <ejjordan@kth.se>
40  * \author Prashanth Kanduri <kanduri@cscs.ch>
41  * \author Sebastian Keller <keller@cscs.ch>
42  */
43 #include "nblib/gmxsetup.h"
44 #include "gromacs/ewald/ewald_utils.h"
45 #include "gromacs/gmxlib/nrnb.h"
46 #include "gromacs/mdlib/forcerec.h"
47 #include "gromacs/mdlib/gmx_omp_nthreads.h"
48 #include "gromacs/mdlib/rf_util.h"
49 #include "gromacs/mdtypes/forcerec.h"
50 #include "gromacs/mdtypes/interaction_const.h"
51 #include "gromacs/mdtypes/simulation_workload.h"
52 #include "gromacs/nbnxm/atomdata.h"
53 #include "gromacs/nbnxm/nbnxm.h"
54 #include "gromacs/nbnxm/nbnxm_simd.h"
55 #include "gromacs/nbnxm/pairlistset.h"
56 #include "gromacs/nbnxm/pairlistsets.h"
57 #include "gromacs/nbnxm/pairsearch.h"
58 #include "gromacs/pbcutil/pbc.h"
59 #include "gromacs/utility/logger.h"
60 #include "gromacs/utility/listoflists.h"
61 #include "gromacs/utility/smalloc.h"
62 #include "nblib/exception.h"
63 #include "nblib/kerneloptions.h"
64 #include "nblib/particletype.h"
65 #include "nblib/simulationstate.h"
66
67 namespace nblib
68 {
69
70 //! Helper to translate between the different enumeration values.
71 static Nbnxm::KernelType translateBenchmarkEnum(const SimdKernels& kernel)
72 {
73     int kernelInt = static_cast<int>(kernel);
74     return static_cast<Nbnxm::KernelType>(kernelInt);
75 }
76
77 /*! \brief Checks the kernel setup
78  *
79  * Returns an error string when the kernel is not available.
80  */
81 static void checkKernelSetup(const NBKernelOptions& options)
82 {
83     if (options.nbnxmSimd >= SimdKernels::Count || options.nbnxmSimd == SimdKernels::SimdAuto)
84     {
85         throw InputException("Need a valid kernel SIMD type");
86     }
87     // Check SIMD support
88     if ((options.nbnxmSimd != SimdKernels::SimdNo && !GMX_SIMD)
89 #ifndef GMX_NBNXN_SIMD_4XN
90         || options.nbnxmSimd == SimdKernels::Simd4XM
91 #endif
92 #ifndef GMX_NBNXN_SIMD_2XNN
93         || options.nbnxmSimd == SimdKernels::Simd2XMM
94 #endif
95     )
96     {
97         throw InputException("The requested SIMD kernel was not set up at configuration time");
98     }
99 }
100
101 NbvSetupUtil::NbvSetupUtil() : gmxForceCalculator_(std::make_unique<GmxForceCalculator>()) {}
102
103 void NbvSetupUtil::setExecutionContext(const NBKernelOptions& options)
104 {
105     // Todo: find a more general way to initialize hardware
106     gmx_omp_nthreads_set(emntPairsearch, options.numOpenMPThreads);
107     gmx_omp_nthreads_set(emntNonbonded, options.numOpenMPThreads);
108 }
109
110 Nbnxm::KernelSetup NbvSetupUtil::getKernelSetup(const NBKernelOptions& options)
111 {
112     checkKernelSetup(options);
113
114     Nbnxm::KernelSetup kernelSetup;
115
116     // The int enum options.nbnxnSimd is set up to match Nbnxm::KernelType + 1
117     kernelSetup.kernelType = translateBenchmarkEnum(options.nbnxmSimd);
118     // The plain-C kernel does not support analytical ewald correction
119     if (kernelSetup.kernelType == Nbnxm::KernelType::Cpu4x4_PlainC)
120     {
121         kernelSetup.ewaldExclusionType = Nbnxm::EwaldExclusionType::Table;
122     }
123     else
124     {
125         kernelSetup.ewaldExclusionType = options.useTabulatedEwaldCorr
126                                                  ? Nbnxm::EwaldExclusionType::Table
127                                                  : Nbnxm::EwaldExclusionType::Analytical;
128     }
129
130     return kernelSetup;
131 }
132
133 void NbvSetupUtil::setParticleInfoAllVdv(const size_t numParticles)
134
135 {
136     particleInfoAllVdw_.resize(numParticles);
137     for (size_t particleI = 0; particleI < numParticles; particleI++)
138     {
139         SET_CGINFO_HAS_VDW(particleInfoAllVdw_[particleI]);
140         SET_CGINFO_HAS_Q(particleInfoAllVdw_[particleI]);
141     }
142 }
143
144 void NbvSetupUtil::setNonBondedParameters(const std::vector<ParticleType>& particleTypes,
145                                           const NonBondedInteractionMap&   nonBondedInteractionMap)
146 {
147     /* Todo: Refactor nbnxm to take nonbondedParameters_ directly
148      *
149      * initial self-handling of combination rules
150      * size: 2*(numParticleTypes^2)
151      */
152     nonbondedParameters_.reserve(2 * particleTypes.size() * particleTypes.size());
153
154     constexpr real c6factor  = 6.0;
155     constexpr real c12factor = 12.0;
156
157     for (const ParticleType& particleType1 : particleTypes)
158     {
159         for (const ParticleType& particleType2 : particleTypes)
160         {
161             nonbondedParameters_.push_back(
162                     nonBondedInteractionMap.getC6(particleType1.name(), particleType2.name()) * c6factor);
163             nonbondedParameters_.push_back(
164                     nonBondedInteractionMap.getC12(particleType1.name(), particleType2.name()) * c12factor);
165         }
166     }
167 }
168
169 void NbvSetupUtil::setAtomProperties(const std::vector<int>&  particleTypeIdOfAllParticles,
170                                      const std::vector<real>& charges)
171 {
172     gmxForceCalculator_->nbv_->setAtomProperties(particleTypeIdOfAllParticles, charges, particleInfoAllVdw_);
173 }
174
175 //! Sets up and returns a Nbnxm object for the given options and system
176 void NbvSetupUtil::setupNbnxmInstance(const size_t numParticleTypes, const NBKernelOptions& options)
177 {
178     const auto pinPolicy  = (options.useGpu ? gmx::PinningPolicy::PinnedIfSupported
179                                            : gmx::PinningPolicy::CannotBePinned);
180     const int  numThreads = options.numOpenMPThreads;
181     // Note: the options and Nbnxm combination rule enums values should match
182     const int combinationRule = static_cast<int>(options.ljCombinationRule);
183
184     checkKernelSetup(options); // throws exception is setup is invalid
185
186     Nbnxm::KernelSetup kernelSetup = getKernelSetup(options);
187
188     PairlistParams pairlistParams(kernelSetup.kernelType, false, options.pairlistCutoff, false);
189     Nbnxm::GridSet gridSet(PbcType::Xyz, false, nullptr, nullptr, pairlistParams.pairlistType,
190                            false, numThreads, pinPolicy);
191     auto           pairlistSets = std::make_unique<PairlistSets>(pairlistParams, false, 0);
192     auto           pairSearch =
193             std::make_unique<PairSearch>(PbcType::Xyz, false, nullptr, nullptr,
194                                          pairlistParams.pairlistType, false, numThreads, pinPolicy);
195
196     auto atomData = std::make_unique<nbnxn_atomdata_t>(pinPolicy);
197
198     // Needs to be called with the number of unique ParticleTypes
199     nbnxn_atomdata_init(gmx::MDLogger(), atomData.get(), kernelSetup.kernelType, combinationRule,
200                         numParticleTypes, nonbondedParameters_, 1, numThreads);
201
202     // Put everything together
203     auto nbv = std::make_unique<nonbonded_verlet_t>(std::move(pairlistSets), std::move(pairSearch),
204                                                     std::move(atomData), kernelSetup, nullptr,
205                                                     nullWallcycle);
206
207     gmxForceCalculator_->nbv_ = std::move(nbv);
208 }
209
210 //! Computes the Ewald splitting coefficient for Coulomb
211 static real ewaldCoeff(const real ewald_rtol, const real pairlistCutoff)
212 {
213     return calc_ewaldcoeff_q(pairlistCutoff, ewald_rtol);
214 }
215
216 void NbvSetupUtil::setupStepWorkload(const NBKernelOptions& options)
217 {
218     gmxForceCalculator_->stepWork_->computeForces          = true;
219     gmxForceCalculator_->stepWork_->computeNonbondedForces = true;
220
221     if (options.computeVirialAndEnergy)
222     {
223         gmxForceCalculator_->stepWork_->computeVirial = true;
224         gmxForceCalculator_->stepWork_->computeEnergy = true;
225     }
226 }
227
228 void NbvSetupUtil::setupInteractionConst(const NBKernelOptions& options)
229 {
230     gmxForceCalculator_->interactionConst_->vdwtype      = evdwCUT;
231     gmxForceCalculator_->interactionConst_->vdw_modifier = eintmodPOTSHIFT;
232     gmxForceCalculator_->interactionConst_->rvdw         = options.pairlistCutoff;
233
234     switch (options.coulombType)
235     {
236         case CoulombType::Pme: gmxForceCalculator_->interactionConst_->eeltype = eelPME; break;
237         case CoulombType::Cutoff: gmxForceCalculator_->interactionConst_->eeltype = eelCUT; break;
238         case CoulombType::ReactionField:
239             gmxForceCalculator_->interactionConst_->eeltype = eelRF;
240             break;
241         case CoulombType::Count: throw InputException("Unsupported electrostatic interaction");
242     }
243     gmxForceCalculator_->interactionConst_->coulomb_modifier = eintmodPOTSHIFT;
244     gmxForceCalculator_->interactionConst_->rcoulomb         = options.pairlistCutoff;
245     // Note: values correspond to ic->coulomb_modifier = eintmodPOTSHIFT
246     gmxForceCalculator_->interactionConst_->dispersion_shift.cpot =
247             -1.0 / gmx::power6(gmxForceCalculator_->interactionConst_->rvdw);
248     gmxForceCalculator_->interactionConst_->repulsion_shift.cpot =
249             -1.0 / gmx::power12(gmxForceCalculator_->interactionConst_->rvdw);
250
251     // These are the initialized values but we leave them here so that later
252     // these can become options.
253     gmxForceCalculator_->interactionConst_->epsilon_r  = 1.0;
254     gmxForceCalculator_->interactionConst_->epsilon_rf = 1.0;
255
256     /* Set the Coulomb energy conversion factor */
257     if (gmxForceCalculator_->interactionConst_->epsilon_r != 0)
258     {
259         gmxForceCalculator_->interactionConst_->epsfac =
260                 ONE_4PI_EPS0 / gmxForceCalculator_->interactionConst_->epsilon_r;
261     }
262     else
263     {
264         /* eps = 0 is infinite dieletric: no Coulomb interactions */
265         gmxForceCalculator_->interactionConst_->epsfac = 0;
266     }
267
268     calc_rffac(nullptr, gmxForceCalculator_->interactionConst_->epsilon_r,
269                gmxForceCalculator_->interactionConst_->epsilon_rf,
270                gmxForceCalculator_->interactionConst_->rcoulomb,
271                &gmxForceCalculator_->interactionConst_->k_rf,
272                &gmxForceCalculator_->interactionConst_->c_rf);
273
274     if (EEL_PME_EWALD(gmxForceCalculator_->interactionConst_->eeltype))
275     {
276         // Ewald coefficients, we ignore the potential shift
277         gmxForceCalculator_->interactionConst_->ewaldcoeff_q = ewaldCoeff(1e-5, options.pairlistCutoff);
278         if (gmxForceCalculator_->interactionConst_->ewaldcoeff_q <= 0)
279         {
280             throw InputException("Ewald coefficient should be > 0");
281         }
282         gmxForceCalculator_->interactionConst_->coulombEwaldTables =
283                 std::make_unique<EwaldCorrectionTables>();
284         init_interaction_const_tables(nullptr, gmxForceCalculator_->interactionConst_.get(), 0, 0);
285     }
286 }
287
288 void NbvSetupUtil::setupForceRec(const matrix& box)
289 {
290     assert((gmxForceCalculator_->forcerec_ && "Forcerec not initialized"));
291     gmxForceCalculator_->forcerec_->nbfp = nonbondedParameters_;
292     snew(gmxForceCalculator_->forcerec_->shift_vec, numShiftVectors);
293     calc_shifts(box, gmxForceCalculator_->forcerec_->shift_vec);
294 }
295
296 void NbvSetupUtil::setParticlesOnGrid(const std::vector<Vec3>& coordinates, const Box& box)
297 {
298     gmxForceCalculator_->setParticlesOnGrid(particleInfoAllVdw_, coordinates, box);
299 }
300
301 void NbvSetupUtil::constructPairList(ExclusionLists<int> exclusionLists)
302 {
303     gmx::ListOfLists<int> exclusions(std::move(exclusionLists.ListRanges),
304                                      std::move(exclusionLists.ListElements));
305     gmxForceCalculator_->nbv_->constructPairlist(gmx::InteractionLocality::Local, exclusions, 0,
306                                                  gmxForceCalculator_->nrnb_.get());
307 }
308
309
310 std::unique_ptr<GmxForceCalculator> GmxSetupDirector::setupGmxForceCalculator(const SimulationState& system,
311                                                                               const NBKernelOptions& options)
312 {
313     NbvSetupUtil nbvSetupUtil;
314     nbvSetupUtil.setExecutionContext(options);
315     nbvSetupUtil.setNonBondedParameters(system.topology().getParticleTypes(),
316                                         system.topology().getNonBondedInteractionMap());
317     nbvSetupUtil.setParticleInfoAllVdv(system.topology().numParticles());
318
319     nbvSetupUtil.setupInteractionConst(options);
320     nbvSetupUtil.setupStepWorkload(options);
321     nbvSetupUtil.setupNbnxmInstance(system.topology().getParticleTypes().size(), options);
322     nbvSetupUtil.setParticlesOnGrid(system.coordinates(), system.box());
323     nbvSetupUtil.constructPairList(system.topology().exclusionLists());
324     nbvSetupUtil.setAtomProperties(system.topology().getParticleTypeIdOfAllParticles(),
325                                    system.topology().getCharges());
326     nbvSetupUtil.setupForceRec(system.box().legacyMatrix());
327
328     return nbvSetupUtil.getGmxForceCalculator();
329 }
330
331 } // namespace nblib