Move bNonbonded flag from t_forcerec to SimulationWorkload
[alexxy/gromacs.git] / src / gromacs / mdlib / sim_util.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013-2019,2020, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37 #include "gmxpre.h"
38
39 #include "config.h"
40
41 #include <cmath>
42 #include <cstdint>
43 #include <cstdio>
44 #include <cstring>
45
46 #include <array>
47
48 #include "gromacs/applied_forces/awh/awh.h"
49 #include "gromacs/domdec/dlbtiming.h"
50 #include "gromacs/domdec/domdec.h"
51 #include "gromacs/domdec/domdec_struct.h"
52 #include "gromacs/domdec/gpuhaloexchange.h"
53 #include "gromacs/domdec/partition.h"
54 #include "gromacs/essentialdynamics/edsam.h"
55 #include "gromacs/ewald/pme.h"
56 #include "gromacs/ewald/pme_pp.h"
57 #include "gromacs/ewald/pme_pp_comm_gpu.h"
58 #include "gromacs/gmxlib/network.h"
59 #include "gromacs/gmxlib/nonbonded/nb_free_energy.h"
60 #include "gromacs/gmxlib/nonbonded/nb_kernel.h"
61 #include "gromacs/gmxlib/nonbonded/nonbonded.h"
62 #include "gromacs/gpu_utils/gpu_utils.h"
63 #include "gromacs/imd/imd.h"
64 #include "gromacs/listed_forces/disre.h"
65 #include "gromacs/listed_forces/gpubonded.h"
66 #include "gromacs/listed_forces/listed_forces.h"
67 #include "gromacs/listed_forces/orires.h"
68 #include "gromacs/math/arrayrefwithpadding.h"
69 #include "gromacs/math/functions.h"
70 #include "gromacs/math/units.h"
71 #include "gromacs/math/vec.h"
72 #include "gromacs/math/vecdump.h"
73 #include "gromacs/mdlib/calcmu.h"
74 #include "gromacs/mdlib/calcvir.h"
75 #include "gromacs/mdlib/constr.h"
76 #include "gromacs/mdlib/dispersioncorrection.h"
77 #include "gromacs/mdlib/enerdata_utils.h"
78 #include "gromacs/mdlib/force.h"
79 #include "gromacs/mdlib/force_flags.h"
80 #include "gromacs/mdlib/forcerec.h"
81 #include "gromacs/mdlib/gmx_omp_nthreads.h"
82 #include "gromacs/mdlib/update.h"
83 #include "gromacs/mdlib/vsite.h"
84 #include "gromacs/mdlib/wall.h"
85 #include "gromacs/mdlib/wholemoleculetransform.h"
86 #include "gromacs/mdtypes/commrec.h"
87 #include "gromacs/mdtypes/enerdata.h"
88 #include "gromacs/mdtypes/forcebuffers.h"
89 #include "gromacs/mdtypes/forceoutput.h"
90 #include "gromacs/mdtypes/forcerec.h"
91 #include "gromacs/mdtypes/iforceprovider.h"
92 #include "gromacs/mdtypes/inputrec.h"
93 #include "gromacs/mdtypes/md_enums.h"
94 #include "gromacs/mdtypes/mdatom.h"
95 #include "gromacs/mdtypes/simulation_workload.h"
96 #include "gromacs/mdtypes/state.h"
97 #include "gromacs/mdtypes/state_propagator_data_gpu.h"
98 #include "gromacs/nbnxm/gpu_data_mgmt.h"
99 #include "gromacs/nbnxm/nbnxm.h"
100 #include "gromacs/nbnxm/nbnxm_gpu.h"
101 #include "gromacs/pbcutil/ishift.h"
102 #include "gromacs/pbcutil/pbc.h"
103 #include "gromacs/pulling/pull.h"
104 #include "gromacs/pulling/pull_rotation.h"
105 #include "gromacs/timing/cyclecounter.h"
106 #include "gromacs/timing/gpu_timing.h"
107 #include "gromacs/timing/wallcycle.h"
108 #include "gromacs/timing/wallcyclereporting.h"
109 #include "gromacs/timing/walltime_accounting.h"
110 #include "gromacs/topology/topology.h"
111 #include "gromacs/utility/arrayref.h"
112 #include "gromacs/utility/basedefinitions.h"
113 #include "gromacs/utility/cstringutil.h"
114 #include "gromacs/utility/exceptions.h"
115 #include "gromacs/utility/fatalerror.h"
116 #include "gromacs/utility/fixedcapacityvector.h"
117 #include "gromacs/utility/gmxassert.h"
118 #include "gromacs/utility/gmxmpi.h"
119 #include "gromacs/utility/logger.h"
120 #include "gromacs/utility/smalloc.h"
121 #include "gromacs/utility/strconvert.h"
122 #include "gromacs/utility/sysinfo.h"
123
124 using gmx::ArrayRef;
125 using gmx::AtomLocality;
126 using gmx::DomainLifetimeWorkload;
127 using gmx::ForceOutputs;
128 using gmx::ForceWithShiftForces;
129 using gmx::InteractionLocality;
130 using gmx::RVec;
131 using gmx::SimulationWorkload;
132 using gmx::StepWorkload;
133
134 // TODO: this environment variable allows us to verify before release
135 // that on less common architectures the total cost of polling is not larger than
136 // a blocking wait (so polling does not introduce overhead when the static
137 // PME-first ordering would suffice).
138 static const bool c_disableAlternatingWait = (getenv("GMX_DISABLE_ALTERNATING_GPU_WAIT") != nullptr);
139
140 static void sum_forces(ArrayRef<RVec> f, ArrayRef<const RVec> forceToAdd)
141 {
142     GMX_ASSERT(f.size() >= forceToAdd.size(), "Accumulation buffer should be sufficiently large");
143     const int end = forceToAdd.size();
144
145     int gmx_unused nt = gmx_omp_nthreads_get(emntDefault);
146 #pragma omp parallel for num_threads(nt) schedule(static)
147     for (int i = 0; i < end; i++)
148     {
149         rvec_inc(f[i], forceToAdd[i]);
150     }
151 }
152
153 static void calc_virial(int                              start,
154                         int                              homenr,
155                         const rvec                       x[],
156                         const gmx::ForceWithShiftForces& forceWithShiftForces,
157                         tensor                           vir_part,
158                         const matrix                     box,
159                         t_nrnb*                          nrnb,
160                         const t_forcerec*                fr,
161                         PbcType                          pbcType)
162 {
163     /* The short-range virial from surrounding boxes */
164     const rvec* fshift = as_rvec_array(forceWithShiftForces.shiftForces().data());
165     calc_vir(SHIFTS, fr->shift_vec, fshift, vir_part, pbcType == PbcType::Screw, box);
166     inc_nrnb(nrnb, eNR_VIRIAL, SHIFTS);
167
168     /* Calculate partial virial, for local atoms only, based on short range.
169      * Total virial is computed in global_stat, called from do_md
170      */
171     const rvec* f = as_rvec_array(forceWithShiftForces.force().data());
172     f_calc_vir(start, start + homenr, x, f, vir_part, box);
173     inc_nrnb(nrnb, eNR_VIRIAL, homenr);
174
175     if (debug)
176     {
177         pr_rvecs(debug, 0, "vir_part", vir_part, DIM);
178     }
179 }
180
181 static void pull_potential_wrapper(const t_commrec*               cr,
182                                    const t_inputrec*              ir,
183                                    const matrix                   box,
184                                    gmx::ArrayRef<const gmx::RVec> x,
185                                    gmx::ForceWithVirial*          force,
186                                    const t_mdatoms*               mdatoms,
187                                    gmx_enerdata_t*                enerd,
188                                    pull_t*                        pull_work,
189                                    const real*                    lambda,
190                                    double                         t,
191                                    gmx_wallcycle_t                wcycle)
192 {
193     t_pbc pbc;
194     real  dvdl;
195
196     /* Calculate the center of mass forces, this requires communication,
197      * which is why pull_potential is called close to other communication.
198      */
199     wallcycle_start(wcycle, ewcPULLPOT);
200     set_pbc(&pbc, ir->pbcType, box);
201     dvdl = 0;
202     enerd->term[F_COM_PULL] +=
203             pull_potential(pull_work, mdatoms->massT, &pbc, cr, t, lambda[efptRESTRAINT],
204                            as_rvec_array(x.data()), force, &dvdl);
205     enerd->dvdl_lin[efptRESTRAINT] += dvdl;
206     wallcycle_stop(wcycle, ewcPULLPOT);
207 }
208
209 static void pme_receive_force_ener(t_forcerec*           fr,
210                                    const t_commrec*      cr,
211                                    gmx::ForceWithVirial* forceWithVirial,
212                                    gmx_enerdata_t*       enerd,
213                                    bool                  useGpuPmePpComms,
214                                    bool                  receivePmeForceToGpu,
215                                    gmx_wallcycle_t       wcycle)
216 {
217     real  e_q, e_lj, dvdl_q, dvdl_lj;
218     float cycles_ppdpme, cycles_seppme;
219
220     cycles_ppdpme = wallcycle_stop(wcycle, ewcPPDURINGPME);
221     dd_cycles_add(cr->dd, cycles_ppdpme, ddCyclPPduringPME);
222
223     /* In case of node-splitting, the PP nodes receive the long-range
224      * forces, virial and energy from the PME nodes here.
225      */
226     wallcycle_start(wcycle, ewcPP_PMEWAITRECVF);
227     dvdl_q  = 0;
228     dvdl_lj = 0;
229     gmx_pme_receive_f(fr->pmePpCommGpu.get(), cr, forceWithVirial, &e_q, &e_lj, &dvdl_q, &dvdl_lj,
230                       useGpuPmePpComms, receivePmeForceToGpu, &cycles_seppme);
231     enerd->term[F_COUL_RECIP] += e_q;
232     enerd->term[F_LJ_RECIP] += e_lj;
233     enerd->dvdl_lin[efptCOUL] += dvdl_q;
234     enerd->dvdl_lin[efptVDW] += dvdl_lj;
235
236     if (wcycle)
237     {
238         dd_cycles_add(cr->dd, cycles_seppme, ddCyclPME);
239     }
240     wallcycle_stop(wcycle, ewcPP_PMEWAITRECVF);
241 }
242
243 static void print_large_forces(FILE*                fp,
244                                const t_mdatoms*     md,
245                                const t_commrec*     cr,
246                                int64_t              step,
247                                real                 forceTolerance,
248                                ArrayRef<const RVec> x,
249                                ArrayRef<const RVec> f)
250 {
251     real       force2Tolerance = gmx::square(forceTolerance);
252     gmx::index numNonFinite    = 0;
253     for (int i = 0; i < md->homenr; i++)
254     {
255         real force2    = norm2(f[i]);
256         bool nonFinite = !std::isfinite(force2);
257         if (force2 >= force2Tolerance || nonFinite)
258         {
259             fprintf(fp, "step %" PRId64 " atom %6d  x %8.3f %8.3f %8.3f  force %12.5e\n", step,
260                     ddglatnr(cr->dd, i), x[i][XX], x[i][YY], x[i][ZZ], std::sqrt(force2));
261         }
262         if (nonFinite)
263         {
264             numNonFinite++;
265         }
266     }
267     if (numNonFinite > 0)
268     {
269         /* Note that with MPI this fatal call on one rank might interrupt
270          * the printing on other ranks. But we can only avoid that with
271          * an expensive MPI barrier that we would need at each step.
272          */
273         gmx_fatal(FARGS, "At step %" PRId64 " detected non-finite forces on %td atoms", step, numNonFinite);
274     }
275 }
276
277 //! When necessary, spreads forces on vsites and computes the virial for \p forceOutputs->forceWithShiftForces()
278 static void postProcessForceWithShiftForces(t_nrnb*                   nrnb,
279                                             gmx_wallcycle_t           wcycle,
280                                             const matrix              box,
281                                             ArrayRef<const RVec>      x,
282                                             ForceOutputs*             forceOutputs,
283                                             tensor                    vir_force,
284                                             const t_mdatoms&          mdatoms,
285                                             const t_forcerec&         fr,
286                                             gmx::VirtualSitesHandler* vsite,
287                                             const StepWorkload&       stepWork)
288 {
289     ForceWithShiftForces& forceWithShiftForces = forceOutputs->forceWithShiftForces();
290
291     /* If we have NoVirSum forces, but we do not calculate the virial,
292      * we later sum the forceWithShiftForces buffer together with
293      * the noVirSum buffer and spread the combined vsite forces at once.
294      */
295     if (vsite && (!forceOutputs->haveForceWithVirial() || stepWork.computeVirial))
296     {
297         using VirialHandling = gmx::VirtualSitesHandler::VirialHandling;
298
299         auto                 f      = forceWithShiftForces.force();
300         auto                 fshift = forceWithShiftForces.shiftForces();
301         const VirialHandling virialHandling =
302                 (stepWork.computeVirial ? VirialHandling::Pbc : VirialHandling::None);
303         vsite->spreadForces(x, f, virialHandling, fshift, nullptr, nrnb, box, wcycle);
304         forceWithShiftForces.haveSpreadVsiteForces() = true;
305     }
306
307     if (stepWork.computeVirial)
308     {
309         /* Calculation of the virial must be done after vsites! */
310         calc_virial(0, mdatoms.homenr, as_rvec_array(x.data()), forceWithShiftForces, vir_force,
311                     box, nrnb, &fr, fr.pbcType);
312     }
313 }
314
315 //! Spread, compute virial for and sum forces, when necessary
316 static void postProcessForces(const t_commrec*          cr,
317                               int64_t                   step,
318                               t_nrnb*                   nrnb,
319                               gmx_wallcycle_t           wcycle,
320                               const matrix              box,
321                               ArrayRef<const RVec>      x,
322                               ForceOutputs*             forceOutputs,
323                               tensor                    vir_force,
324                               const t_mdatoms*          mdatoms,
325                               const t_forcerec*         fr,
326                               gmx::VirtualSitesHandler* vsite,
327                               const StepWorkload&       stepWork)
328 {
329     // Extract the final output force buffer, which is also the buffer for forces with shift forces
330     ArrayRef<RVec> f = forceOutputs->forceWithShiftForces().force();
331
332     if (forceOutputs->haveForceWithVirial())
333     {
334         auto& forceWithVirial = forceOutputs->forceWithVirial();
335
336         if (vsite)
337         {
338             /* Spread the mesh force on virtual sites to the other particles...
339              * This is parallellized. MPI communication is performed
340              * if the constructing atoms aren't local.
341              */
342             GMX_ASSERT(!stepWork.computeVirial || f.data() != forceWithVirial.force_.data(),
343                        "We need separate force buffers for shift and virial forces when "
344                        "computing the virial");
345             GMX_ASSERT(!stepWork.computeVirial
346                                || forceOutputs->forceWithShiftForces().haveSpreadVsiteForces(),
347                        "We should spread the force with shift forces separately when computing "
348                        "the virial");
349             const gmx::VirtualSitesHandler::VirialHandling virialHandling =
350                     (stepWork.computeVirial ? gmx::VirtualSitesHandler::VirialHandling::NonLinear
351                                             : gmx::VirtualSitesHandler::VirialHandling::None);
352             matrix virial = { { 0 } };
353             vsite->spreadForces(x, forceWithVirial.force_, virialHandling, {}, virial, nrnb, box, wcycle);
354             forceWithVirial.addVirialContribution(virial);
355         }
356
357         if (stepWork.computeVirial)
358         {
359             /* Now add the forces, this is local */
360             sum_forces(f, forceWithVirial.force_);
361
362             /* Add the direct virial contributions */
363             GMX_ASSERT(
364                     forceWithVirial.computeVirial_,
365                     "forceWithVirial should request virial computation when we request the virial");
366             m_add(vir_force, forceWithVirial.getVirial(), vir_force);
367
368             if (debug)
369             {
370                 pr_rvecs(debug, 0, "vir_force", vir_force, DIM);
371             }
372         }
373     }
374     else
375     {
376         GMX_ASSERT(vsite == nullptr || forceOutputs->forceWithShiftForces().haveSpreadVsiteForces(),
377                    "We should have spread the vsite forces (earlier)");
378     }
379
380     if (fr->print_force >= 0)
381     {
382         print_large_forces(stderr, mdatoms, cr, step, fr->print_force, x, f);
383     }
384 }
385
386 static void do_nb_verlet(t_forcerec*                fr,
387                          const interaction_const_t* ic,
388                          gmx_enerdata_t*            enerd,
389                          const StepWorkload&        stepWork,
390                          const InteractionLocality  ilocality,
391                          const int                  clearF,
392                          const int64_t              step,
393                          t_nrnb*                    nrnb,
394                          gmx_wallcycle_t            wcycle)
395 {
396     if (!stepWork.computeNonbondedForces)
397     {
398         /* skip non-bonded calculation */
399         return;
400     }
401
402     nonbonded_verlet_t* nbv = fr->nbv.get();
403
404     /* GPU kernel launch overhead is already timed separately */
405     if (fr->cutoff_scheme != ecutsVERLET)
406     {
407         gmx_incons("Invalid cut-off scheme passed!");
408     }
409
410     if (!nbv->useGpu())
411     {
412         /* When dynamic pair-list  pruning is requested, we need to prune
413          * at nstlistPrune steps.
414          */
415         if (nbv->isDynamicPruningStepCpu(step))
416         {
417             /* Prune the pair-list beyond fr->ic->rlistPrune using
418              * the current coordinates of the atoms.
419              */
420             wallcycle_sub_start(wcycle, ewcsNONBONDED_PRUNING);
421             nbv->dispatchPruneKernelCpu(ilocality, fr->shift_vec);
422             wallcycle_sub_stop(wcycle, ewcsNONBONDED_PRUNING);
423         }
424     }
425
426     nbv->dispatchNonbondedKernel(ilocality, *ic, stepWork, clearF, *fr, enerd, nrnb);
427 }
428
429 static inline void clearRVecs(ArrayRef<RVec> v, const bool useOpenmpThreading)
430 {
431     int nth = gmx_omp_nthreads_get_simple_rvec_task(emntDefault, v.ssize());
432
433     /* Note that we would like to avoid this conditional by putting it
434      * into the omp pragma instead, but then we still take the full
435      * omp parallel for overhead (at least with gcc5).
436      */
437     if (!useOpenmpThreading || nth == 1)
438     {
439         for (RVec& elem : v)
440         {
441             clear_rvec(elem);
442         }
443     }
444     else
445     {
446 #pragma omp parallel for num_threads(nth) schedule(static)
447         for (gmx::index i = 0; i < v.ssize(); i++)
448         {
449             clear_rvec(v[i]);
450         }
451     }
452 }
453
454 /*! \brief Return an estimate of the average kinetic energy or 0 when unreliable
455  *
456  * \param groupOptions  Group options, containing T-coupling options
457  */
458 static real averageKineticEnergyEstimate(const t_grpopts& groupOptions)
459 {
460     real nrdfCoupled   = 0;
461     real nrdfUncoupled = 0;
462     real kineticEnergy = 0;
463     for (int g = 0; g < groupOptions.ngtc; g++)
464     {
465         if (groupOptions.tau_t[g] >= 0)
466         {
467             nrdfCoupled += groupOptions.nrdf[g];
468             kineticEnergy += groupOptions.nrdf[g] * 0.5 * groupOptions.ref_t[g] * BOLTZ;
469         }
470         else
471         {
472             nrdfUncoupled += groupOptions.nrdf[g];
473         }
474     }
475
476     /* This conditional with > also catches nrdf=0 */
477     if (nrdfCoupled > nrdfUncoupled)
478     {
479         return kineticEnergy * (nrdfCoupled + nrdfUncoupled) / nrdfCoupled;
480     }
481     else
482     {
483         return 0;
484     }
485 }
486
487 /*! \brief This routine checks that the potential energy is finite.
488  *
489  * Always checks that the potential energy is finite. If step equals
490  * inputrec.init_step also checks that the magnitude of the potential energy
491  * is reasonable. Terminates with a fatal error when a check fails.
492  * Note that passing this check does not guarantee finite forces,
493  * since those use slightly different arithmetics. But in most cases
494  * there is just a narrow coordinate range where forces are not finite
495  * and energies are finite.
496  *
497  * \param[in] step      The step number, used for checking and printing
498  * \param[in] enerd     The energy data; the non-bonded group energies need to be added to
499  * enerd.term[F_EPOT] before calling this routine \param[in] inputrec  The input record
500  */
501 static void checkPotentialEnergyValidity(int64_t step, const gmx_enerdata_t& enerd, const t_inputrec& inputrec)
502 {
503     /* Threshold valid for comparing absolute potential energy against
504      * the kinetic energy. Normally one should not consider absolute
505      * potential energy values, but with a factor of one million
506      * we should never get false positives.
507      */
508     constexpr real c_thresholdFactor = 1e6;
509
510     bool energyIsNotFinite    = !std::isfinite(enerd.term[F_EPOT]);
511     real averageKineticEnergy = 0;
512     /* We only check for large potential energy at the initial step,
513      * because that is by far the most likely step for this too occur
514      * and because computing the average kinetic energy is not free.
515      * Note: nstcalcenergy >> 1 often does not allow to catch large energies
516      * before they become NaN.
517      */
518     if (step == inputrec.init_step && EI_DYNAMICS(inputrec.eI))
519     {
520         averageKineticEnergy = averageKineticEnergyEstimate(inputrec.opts);
521     }
522
523     if (energyIsNotFinite
524         || (averageKineticEnergy > 0 && enerd.term[F_EPOT] > c_thresholdFactor * averageKineticEnergy))
525     {
526         gmx_fatal(
527                 FARGS,
528                 "Step %" PRId64
529                 ": The total potential energy is %g, which is %s. The LJ and electrostatic "
530                 "contributions to the energy are %g and %g, respectively. A %s potential energy "
531                 "can be caused by overlapping interactions in bonded interactions or very large%s "
532                 "coordinate values. Usually this is caused by a badly- or non-equilibrated initial "
533                 "configuration, incorrect interactions or parameters in the topology.",
534                 step, enerd.term[F_EPOT], energyIsNotFinite ? "not finite" : "extremely high",
535                 enerd.term[F_LJ], enerd.term[F_COUL_SR],
536                 energyIsNotFinite ? "non-finite" : "very high", energyIsNotFinite ? " or Nan" : "");
537     }
538 }
539
540 /*! \brief Return true if there are special forces computed this step.
541  *
542  * The conditionals exactly correspond to those in computeSpecialForces().
543  */
544 static bool haveSpecialForces(const t_inputrec&          inputrec,
545                               const gmx::ForceProviders& forceProviders,
546                               const pull_t*              pull_work,
547                               const bool                 computeForces,
548                               const gmx_edsam*           ed)
549 {
550
551     return ((computeForces && forceProviders.hasForceProvider()) || // forceProviders
552             (inputrec.bPull && pull_have_potential(pull_work)) ||   // pull
553             inputrec.bRot ||                                        // enforced rotation
554             (ed != nullptr) ||                                      // flooding
555             (inputrec.bIMD && computeForces));                      // IMD
556 }
557
558 /*! \brief Compute forces and/or energies for special algorithms
559  *
560  * The intention is to collect all calls to algorithms that compute
561  * forces on local atoms only and that do not contribute to the local
562  * virial sum (but add their virial contribution separately).
563  * Eventually these should likely all become ForceProviders.
564  * Within this function the intention is to have algorithms that do
565  * global communication at the end, so global barriers within the MD loop
566  * are as close together as possible.
567  *
568  * \param[in]     fplog            The log file
569  * \param[in]     cr               The communication record
570  * \param[in]     inputrec         The input record
571  * \param[in]     awh              The Awh module (nullptr if none in use).
572  * \param[in]     enforcedRotation Enforced rotation module.
573  * \param[in]     imdSession       The IMD session
574  * \param[in]     pull_work        The pull work structure.
575  * \param[in]     step             The current MD step
576  * \param[in]     t                The current time
577  * \param[in,out] wcycle           Wallcycle accounting struct
578  * \param[in,out] forceProviders   Pointer to a list of force providers
579  * \param[in]     box              The unit cell
580  * \param[in]     x                The coordinates
581  * \param[in]     mdatoms          Per atom properties
582  * \param[in]     lambda           Array of free-energy lambda values
583  * \param[in]     stepWork         Step schedule flags
584  * \param[in,out] forceWithVirial  Force and virial buffers
585  * \param[in,out] enerd            Energy buffer
586  * \param[in,out] ed               Essential dynamics pointer
587  * \param[in]     didNeighborSearch Tells if we did neighbor searching this step, used for ED sampling
588  *
589  * \todo Remove didNeighborSearch, which is used incorrectly.
590  * \todo Convert all other algorithms called here to ForceProviders.
591  */
592 static void computeSpecialForces(FILE*                          fplog,
593                                  const t_commrec*               cr,
594                                  const t_inputrec*              inputrec,
595                                  gmx::Awh*                      awh,
596                                  gmx_enfrot*                    enforcedRotation,
597                                  gmx::ImdSession*               imdSession,
598                                  pull_t*                        pull_work,
599                                  int64_t                        step,
600                                  double                         t,
601                                  gmx_wallcycle_t                wcycle,
602                                  gmx::ForceProviders*           forceProviders,
603                                  const matrix                   box,
604                                  gmx::ArrayRef<const gmx::RVec> x,
605                                  const t_mdatoms*               mdatoms,
606                                  gmx::ArrayRef<const real>      lambda,
607                                  const StepWorkload&            stepWork,
608                                  gmx::ForceWithVirial*          forceWithVirial,
609                                  gmx_enerdata_t*                enerd,
610                                  gmx_edsam*                     ed,
611                                  bool                           didNeighborSearch)
612 {
613     /* NOTE: Currently all ForceProviders only provide forces.
614      *       When they also provide energies, remove this conditional.
615      */
616     if (stepWork.computeForces)
617     {
618         gmx::ForceProviderInput  forceProviderInput(x, *mdatoms, t, box, *cr);
619         gmx::ForceProviderOutput forceProviderOutput(forceWithVirial, enerd);
620
621         /* Collect forces from modules */
622         forceProviders->calculateForces(forceProviderInput, &forceProviderOutput);
623     }
624
625     if (inputrec->bPull && pull_have_potential(pull_work))
626     {
627         pull_potential_wrapper(cr, inputrec, box, x, forceWithVirial, mdatoms, enerd, pull_work,
628                                lambda.data(), t, wcycle);
629     }
630     if (awh)
631     {
632         const bool          needForeignEnergyDifferences = awh->needForeignEnergyDifferences(step);
633         std::vector<double> foreignLambdaDeltaH, foreignLambdaDhDl;
634         if (needForeignEnergyDifferences)
635         {
636             enerd->foreignLambdaTerms.finalizePotentialContributions(enerd->dvdl_lin, lambda,
637                                                                      *inputrec->fepvals);
638             std::tie(foreignLambdaDeltaH, foreignLambdaDhDl) = enerd->foreignLambdaTerms.getTerms(cr);
639         }
640
641         enerd->term[F_COM_PULL] += awh->applyBiasForcesAndUpdateBias(
642                 inputrec->pbcType, mdatoms->massT, foreignLambdaDeltaH, foreignLambdaDhDl, box,
643                 forceWithVirial, t, step, wcycle, fplog);
644     }
645
646     rvec* f = as_rvec_array(forceWithVirial->force_.data());
647
648     /* Add the forces from enforced rotation potentials (if any) */
649     if (inputrec->bRot)
650     {
651         wallcycle_start(wcycle, ewcROTadd);
652         enerd->term[F_COM_PULL] += add_rot_forces(enforcedRotation, f, cr, step, t);
653         wallcycle_stop(wcycle, ewcROTadd);
654     }
655
656     if (ed)
657     {
658         /* Note that since init_edsam() is called after the initialization
659          * of forcerec, edsam doesn't request the noVirSum force buffer.
660          * Thus if no other algorithm (e.g. PME) requires it, the forces
661          * here will contribute to the virial.
662          */
663         do_flood(cr, inputrec, as_rvec_array(x.data()), f, ed, box, step, didNeighborSearch);
664     }
665
666     /* Add forces from interactive molecular dynamics (IMD), if any */
667     if (inputrec->bIMD && stepWork.computeForces)
668     {
669         imdSession->applyForces(f);
670     }
671 }
672
673 /*! \brief Launch the prepare_step and spread stages of PME GPU.
674  *
675  * \param[in]  pmedata              The PME structure
676  * \param[in]  box                  The box matrix
677  * \param[in]  stepWork             Step schedule flags
678  * \param[in]  xReadyOnDevice       Event synchronizer indicating that the coordinates are ready in the device memory.
679  * \param[in]  lambdaQ              The Coulomb lambda of the current state.
680  * \param[in]  wcycle               The wallcycle structure
681  */
682 static inline void launchPmeGpuSpread(gmx_pme_t*            pmedata,
683                                       const matrix          box,
684                                       const StepWorkload&   stepWork,
685                                       GpuEventSynchronizer* xReadyOnDevice,
686                                       const real            lambdaQ,
687                                       gmx_wallcycle_t       wcycle)
688 {
689     pme_gpu_prepare_computation(pmedata, box, wcycle, stepWork);
690     pme_gpu_launch_spread(pmedata, xReadyOnDevice, wcycle, lambdaQ);
691 }
692
693 /*! \brief Launch the FFT and gather stages of PME GPU
694  *
695  * This function only implements setting the output forces (no accumulation).
696  *
697  * \param[in]  pmedata        The PME structure
698  * \param[in]  lambdaQ        The Coulomb lambda of the current system state.
699  * \param[in]  wcycle         The wallcycle structure
700  * \param[in]  stepWork       Step schedule flags
701  */
702 static void launchPmeGpuFftAndGather(gmx_pme_t*               pmedata,
703                                      const real               lambdaQ,
704                                      gmx_wallcycle_t          wcycle,
705                                      const gmx::StepWorkload& stepWork)
706 {
707     pme_gpu_launch_complex_transforms(pmedata, wcycle, stepWork);
708     pme_gpu_launch_gather(pmedata, wcycle, lambdaQ);
709 }
710
711 /*! \brief
712  *  Polling wait for either of the PME or nonbonded GPU tasks.
713  *
714  * Instead of a static order in waiting for GPU tasks, this function
715  * polls checking which of the two tasks completes first, and does the
716  * associated force buffer reduction overlapped with the other task.
717  * By doing that, unlike static scheduling order, it can always overlap
718  * one of the reductions, regardless of the GPU task completion order.
719  *
720  * \param[in]     nbv              Nonbonded verlet structure
721  * \param[in,out] pmedata          PME module data
722  * \param[in,out] forceOutputs     Output buffer for the forces and virial
723  * \param[in,out] enerd            Energy data structure results are reduced into
724  * \param[in]     lambdaQ          The Coulomb lambda of the current system state.
725  * \param[in]     stepWork         Step schedule flags
726  * \param[in]     wcycle           The wallcycle structure
727  */
728 static void alternatePmeNbGpuWaitReduce(nonbonded_verlet_t* nbv,
729                                         gmx_pme_t*          pmedata,
730                                         gmx::ForceOutputs*  forceOutputs,
731                                         gmx_enerdata_t*     enerd,
732                                         const real          lambdaQ,
733                                         const StepWorkload& stepWork,
734                                         gmx_wallcycle_t     wcycle)
735 {
736     bool isPmeGpuDone = false;
737     bool isNbGpuDone  = false;
738
739
740     gmx::ForceWithShiftForces& forceWithShiftForces = forceOutputs->forceWithShiftForces();
741     gmx::ForceWithVirial&      forceWithVirial      = forceOutputs->forceWithVirial();
742
743     gmx::ArrayRef<const gmx::RVec> pmeGpuForces;
744
745     while (!isPmeGpuDone || !isNbGpuDone)
746     {
747         if (!isPmeGpuDone)
748         {
749             GpuTaskCompletion completionType =
750                     (isNbGpuDone) ? GpuTaskCompletion::Wait : GpuTaskCompletion::Check;
751             isPmeGpuDone = pme_gpu_try_finish_task(pmedata, stepWork, wcycle, &forceWithVirial,
752                                                    enerd, lambdaQ, completionType);
753         }
754
755         if (!isNbGpuDone)
756         {
757             GpuTaskCompletion completionType =
758                     (isPmeGpuDone) ? GpuTaskCompletion::Wait : GpuTaskCompletion::Check;
759             isNbGpuDone = Nbnxm::gpu_try_finish_task(
760                     nbv->gpu_nbv, stepWork, AtomLocality::Local, enerd->grpp.ener[egLJSR].data(),
761                     enerd->grpp.ener[egCOULSR].data(), forceWithShiftForces.shiftForces(),
762                     completionType, wcycle);
763
764             if (isNbGpuDone)
765             {
766                 nbv->atomdata_add_nbat_f_to_f(AtomLocality::Local, forceWithShiftForces.force());
767             }
768         }
769     }
770 }
771
772 /*! \brief Set up the different force buffers; also does clearing.
773  *
774  * \param[in] forceHelperBuffers  Helper force buffers
775  * \param[in] pull_work The pull work object.
776  * \param[in] inputrec  input record
777  * \param[in] force     force array
778  * \param[in] stepWork  Step schedule flags
779  * \param[out] wcycle   wallcycle recording structure
780  *
781  * \returns             Cleared force output structure
782  */
783 static ForceOutputs setupForceOutputs(ForceHelperBuffers*                 forceHelperBuffers,
784                                       pull_t*                             pull_work,
785                                       const t_inputrec&                   inputrec,
786                                       gmx::ArrayRefWithPadding<gmx::RVec> force,
787                                       const StepWorkload&                 stepWork,
788                                       gmx_wallcycle_t                     wcycle)
789 {
790     wallcycle_sub_start(wcycle, ewcsCLEAR_FORCE_BUFFER);
791
792     /* NOTE: We assume fr->shiftForces is all zeros here */
793     gmx::ForceWithShiftForces forceWithShiftForces(force, stepWork.computeVirial,
794                                                    forceHelperBuffers->shiftForces());
795
796     if (stepWork.computeForces)
797     {
798         /* Clear the short- and long-range forces */
799         clearRVecs(forceWithShiftForces.force(), true);
800
801         /* Clear the shift forces */
802         clearRVecs(forceWithShiftForces.shiftForces(), false);
803     }
804
805     /* If we need to compute the virial, we might need a separate
806      * force buffer for algorithms for which the virial is calculated
807      * directly, such as PME. Otherwise, forceWithVirial uses the
808      * the same force (f in legacy calls) buffer as other algorithms.
809      */
810     const bool useSeparateForceWithVirialBuffer =
811             (stepWork.computeForces
812              && (stepWork.computeVirial && forceHelperBuffers->haveDirectVirialContributions()));
813     /* forceWithVirial uses the local atom range only */
814     gmx::ForceWithVirial forceWithVirial(
815             useSeparateForceWithVirialBuffer ? forceHelperBuffers->forceBufferForDirectVirialContributions()
816                                              : force.unpaddedArrayRef(),
817             stepWork.computeVirial);
818
819     if (useSeparateForceWithVirialBuffer)
820     {
821         /* TODO: update comment
822          * We only compute forces on local atoms. Note that vsites can
823          * spread to non-local atoms, but that part of the buffer is
824          * cleared separately in the vsite spreading code.
825          */
826         clearRVecs(forceWithVirial.force_, true);
827     }
828
829     if (inputrec.bPull && pull_have_constraint(pull_work))
830     {
831         clear_pull_forces(pull_work);
832     }
833
834     wallcycle_sub_stop(wcycle, ewcsCLEAR_FORCE_BUFFER);
835
836     return ForceOutputs(forceWithShiftForces, forceHelperBuffers->haveDirectVirialContributions(),
837                         forceWithVirial);
838 }
839
840
841 /*! \brief Set up flags that have the lifetime of the domain indicating what type of work is there to compute.
842  */
843 static DomainLifetimeWorkload setupDomainLifetimeWorkload(const t_inputrec&         inputrec,
844                                                           const t_forcerec&         fr,
845                                                           const pull_t*             pull_work,
846                                                           const gmx_edsam*          ed,
847                                                           const t_mdatoms&          mdatoms,
848                                                           const SimulationWorkload& simulationWork,
849                                                           const StepWorkload&       stepWork)
850 {
851     DomainLifetimeWorkload domainWork;
852     // Note that haveSpecialForces is constant over the whole run
853     domainWork.haveSpecialForces =
854             haveSpecialForces(inputrec, *fr.forceProviders, pull_work, stepWork.computeForces, ed);
855     domainWork.haveCpuListedForceWork = false;
856     domainWork.haveCpuBondedWork      = false;
857     for (const auto& listedForces : fr.listedForces)
858     {
859         if (listedForces.haveCpuListedForces(*fr.fcdata))
860         {
861             domainWork.haveCpuListedForceWork = true;
862         }
863         if (listedForces.haveCpuBondeds())
864         {
865             domainWork.haveCpuBondedWork = true;
866         }
867     }
868     domainWork.haveGpuBondedWork = ((fr.gpuBonded != nullptr) && fr.gpuBonded->haveInteractions());
869     // Note that haveFreeEnergyWork is constant over the whole run
870     domainWork.haveFreeEnergyWork = (fr.efep != efepNO && mdatoms.nPerturbed != 0);
871     // We assume we have local force work if there are CPU
872     // force tasks including PME or nonbondeds.
873     domainWork.haveCpuLocalForceWork =
874             domainWork.haveSpecialForces || domainWork.haveCpuListedForceWork
875             || domainWork.haveFreeEnergyWork || simulationWork.useCpuNonbonded || simulationWork.useCpuPme
876             || simulationWork.haveEwaldSurfaceContribution || inputrec.nwall > 0;
877
878     return domainWork;
879 }
880
881 /*! \brief Set up force flag stuct from the force bitmask.
882  *
883  * \param[in]      legacyFlags          Force bitmask flags used to construct the new flags
884  * \param[in]      simulationWork       Simulation workload description.
885  * \param[in]      rankHasPmeDuty       If this rank computes PME.
886  *
887  * \returns New Stepworkload description.
888  */
889 static StepWorkload setupStepWorkload(const int                 legacyFlags,
890                                       const SimulationWorkload& simulationWork,
891                                       const bool                rankHasPmeDuty)
892 {
893     StepWorkload flags;
894     flags.stateChanged        = ((legacyFlags & GMX_FORCE_STATECHANGED) != 0);
895     flags.haveDynamicBox      = ((legacyFlags & GMX_FORCE_DYNAMICBOX) != 0);
896     flags.doNeighborSearch    = ((legacyFlags & GMX_FORCE_NS) != 0);
897     flags.computeVirial       = ((legacyFlags & GMX_FORCE_VIRIAL) != 0);
898     flags.computeEnergy       = ((legacyFlags & GMX_FORCE_ENERGY) != 0);
899     flags.computeForces       = ((legacyFlags & GMX_FORCE_FORCES) != 0);
900     flags.computeListedForces = ((legacyFlags & GMX_FORCE_LISTED) != 0);
901     flags.computeNonbondedForces =
902             ((legacyFlags & GMX_FORCE_NONBONDED) != 0) && simulationWork.computeNonbonded;
903     flags.computeDhdl = ((legacyFlags & GMX_FORCE_DHDL) != 0);
904
905     if (simulationWork.useGpuBufferOps)
906     {
907         GMX_ASSERT(simulationWork.useGpuNonbonded,
908                    "Can only offload buffer ops if nonbonded computation is also offloaded");
909     }
910     flags.useGpuXBufferOps = simulationWork.useGpuBufferOps;
911     // on virial steps the CPU reduction path is taken
912     flags.useGpuFBufferOps    = simulationWork.useGpuBufferOps && !flags.computeVirial;
913     flags.useGpuPmeFReduction = flags.useGpuFBufferOps
914                                 && (simulationWork.useGpuPme
915                                     && (rankHasPmeDuty || simulationWork.useGpuPmePpCommunication));
916
917     return flags;
918 }
919
920
921 /* \brief Launch end-of-step GPU tasks: buffer clearing and rolling pruning.
922  *
923  * TODO: eliminate \p useGpuPmeOnThisRank when this is
924  * incorporated in DomainLifetimeWorkload.
925  */
926 static void launchGpuEndOfStepTasks(nonbonded_verlet_t*               nbv,
927                                     gmx::GpuBonded*                   gpuBonded,
928                                     gmx_pme_t*                        pmedata,
929                                     gmx_enerdata_t*                   enerd,
930                                     const gmx::MdrunScheduleWorkload& runScheduleWork,
931                                     bool                              useGpuPmeOnThisRank,
932                                     int64_t                           step,
933                                     gmx_wallcycle_t                   wcycle)
934 {
935     if (runScheduleWork.simulationWork.useGpuNonbonded)
936     {
937         /* Launch pruning before buffer clearing because the API overhead of the
938          * clear kernel launches can leave the GPU idle while it could be running
939          * the prune kernel.
940          */
941         if (nbv->isDynamicPruningStepGpu(step))
942         {
943             nbv->dispatchPruneKernelGpu(step);
944         }
945
946         /* now clear the GPU outputs while we finish the step on the CPU */
947         wallcycle_start_nocount(wcycle, ewcLAUNCH_GPU);
948         wallcycle_sub_start_nocount(wcycle, ewcsLAUNCH_GPU_NONBONDED);
949         Nbnxm::gpu_clear_outputs(nbv->gpu_nbv, runScheduleWork.stepWork.computeVirial);
950         wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
951         wallcycle_stop(wcycle, ewcLAUNCH_GPU);
952     }
953
954     if (useGpuPmeOnThisRank)
955     {
956         pme_gpu_reinit_computation(pmedata, wcycle);
957     }
958
959     if (runScheduleWork.domainWork.haveGpuBondedWork && runScheduleWork.stepWork.computeEnergy)
960     {
961         // in principle this should be included in the DD balancing region,
962         // but generally it is infrequent so we'll omit it for the sake of
963         // simpler code
964         gpuBonded->waitAccumulateEnergyTerms(enerd);
965
966         gpuBonded->clearEnergies();
967     }
968 }
969
970 //! \brief Data structure to hold dipole-related data and staging arrays
971 struct DipoleData
972 {
973     //! Dipole staging for fast summing over MPI
974     gmx::DVec muStaging[2] = { { 0.0, 0.0, 0.0 } };
975     //! Dipole staging for states A and B (index 0 and 1 resp.)
976     gmx::RVec muStateAB[2] = { { 0.0_real, 0.0_real, 0.0_real } };
977 };
978
979
980 static void reduceAndUpdateMuTot(DipoleData*                   dipoleData,
981                                  const t_commrec*              cr,
982                                  const bool                    haveFreeEnergy,
983                                  gmx::ArrayRef<const real>     lambda,
984                                  rvec                          muTotal,
985                                  const DDBalanceRegionHandler& ddBalanceRegionHandler)
986 {
987     if (PAR(cr))
988     {
989         gmx_sumd(2 * DIM, dipoleData->muStaging[0], cr);
990         ddBalanceRegionHandler.reopenRegionCpu();
991     }
992     for (int i = 0; i < 2; i++)
993     {
994         for (int j = 0; j < DIM; j++)
995         {
996             dipoleData->muStateAB[i][j] = dipoleData->muStaging[i][j];
997         }
998     }
999
1000     if (!haveFreeEnergy)
1001     {
1002         copy_rvec(dipoleData->muStateAB[0], muTotal);
1003     }
1004     else
1005     {
1006         for (int j = 0; j < DIM; j++)
1007         {
1008             muTotal[j] = (1.0 - lambda[efptCOUL]) * dipoleData->muStateAB[0][j]
1009                          + lambda[efptCOUL] * dipoleData->muStateAB[1][j];
1010         }
1011     }
1012 }
1013
1014 void do_force(FILE*                               fplog,
1015               const t_commrec*                    cr,
1016               const gmx_multisim_t*               ms,
1017               const t_inputrec*                   inputrec,
1018               gmx::Awh*                           awh,
1019               gmx_enfrot*                         enforcedRotation,
1020               gmx::ImdSession*                    imdSession,
1021               pull_t*                             pull_work,
1022               int64_t                             step,
1023               t_nrnb*                             nrnb,
1024               gmx_wallcycle_t                     wcycle,
1025               const gmx_localtop_t*               top,
1026               const matrix                        box,
1027               gmx::ArrayRefWithPadding<gmx::RVec> x,
1028               history_t*                          hist,
1029               gmx::ForceBuffersView*              forceView,
1030               tensor                              vir_force,
1031               const t_mdatoms*                    mdatoms,
1032               gmx_enerdata_t*                     enerd,
1033               gmx::ArrayRef<const real>           lambda,
1034               t_forcerec*                         fr,
1035               gmx::MdrunScheduleWorkload*         runScheduleWork,
1036               gmx::VirtualSitesHandler*           vsite,
1037               rvec                                muTotal,
1038               double                              t,
1039               gmx_edsam*                          ed,
1040               int                                 legacyFlags,
1041               const DDBalanceRegionHandler&       ddBalanceRegionHandler)
1042 {
1043     auto force = forceView->forceWithPadding();
1044     GMX_ASSERT(force.unpaddedArrayRef().ssize() >= fr->natoms_force_constr,
1045                "The size of the force buffer should be at least the number of atoms to compute "
1046                "forces for");
1047
1048     nonbonded_verlet_t*          nbv      = fr->nbv.get();
1049     interaction_const_t*         ic       = fr->ic;
1050     gmx::StatePropagatorDataGpu* stateGpu = fr->stateGpu;
1051
1052     const SimulationWorkload& simulationWork = runScheduleWork->simulationWork;
1053
1054
1055     runScheduleWork->stepWork =
1056             setupStepWorkload(legacyFlags, simulationWork, thisRankHasDuty(cr, DUTY_PME));
1057     const StepWorkload& stepWork = runScheduleWork->stepWork;
1058
1059
1060     const bool useGpuPmeOnThisRank = simulationWork.useGpuPme && thisRankHasDuty(cr, DUTY_PME);
1061
1062     /* At a search step we need to start the first balancing region
1063      * somewhere early inside the step after communication during domain
1064      * decomposition (and not during the previous step as usual).
1065      */
1066     if (stepWork.doNeighborSearch)
1067     {
1068         ddBalanceRegionHandler.openBeforeForceComputationCpu(DdAllowBalanceRegionReopen::yes);
1069     }
1070
1071     clear_mat(vir_force);
1072
1073     if (fr->pbcType != PbcType::No)
1074     {
1075         /* Compute shift vectors every step,
1076          * because of pressure coupling or box deformation!
1077          */
1078         if (stepWork.haveDynamicBox && stepWork.stateChanged)
1079         {
1080             calc_shifts(box, fr->shift_vec);
1081         }
1082
1083         const bool fillGrid = (stepWork.doNeighborSearch && stepWork.stateChanged);
1084         const bool calcCGCM = (fillGrid && !DOMAINDECOMP(cr));
1085         if (calcCGCM)
1086         {
1087             put_atoms_in_box_omp(fr->pbcType, box, x.unpaddedArrayRef().subArray(0, mdatoms->homenr),
1088                                  gmx_omp_nthreads_get(emntDefault));
1089             inc_nrnb(nrnb, eNR_SHIFTX, mdatoms->homenr);
1090         }
1091     }
1092
1093     nbnxn_atomdata_copy_shiftvec(stepWork.haveDynamicBox, fr->shift_vec, nbv->nbat.get());
1094
1095     const bool pmeSendCoordinatesFromGpu =
1096             GMX_MPI && simulationWork.useGpuPmePpCommunication && !(stepWork.doNeighborSearch);
1097     const bool reinitGpuPmePpComms =
1098             GMX_MPI && simulationWork.useGpuPmePpCommunication && (stepWork.doNeighborSearch);
1099
1100     const auto localXReadyOnDevice = (useGpuPmeOnThisRank || simulationWork.useGpuBufferOps)
1101                                              ? stateGpu->getCoordinatesReadyOnDeviceEvent(
1102                                                        AtomLocality::Local, simulationWork, stepWork)
1103                                              : nullptr;
1104
1105     // If coordinates are to be sent to PME task from CPU memory, perform that send here.
1106     // Otherwise the send will occur after H2D coordinate transfer.
1107     if (GMX_MPI && !thisRankHasDuty(cr, DUTY_PME) && !pmeSendCoordinatesFromGpu)
1108     {
1109         /* Send particle coordinates to the pme nodes */
1110         if (!stepWork.doNeighborSearch && simulationWork.useGpuUpdate)
1111         {
1112             GMX_RELEASE_ASSERT(false,
1113                                "GPU update and separate PME ranks are only supported with GPU "
1114                                "direct communication!");
1115             // TODO: when this code-path becomes supported add:
1116             // stateGpu->waitCoordinatesReadyOnHost(AtomLocality::Local);
1117         }
1118
1119         gmx_pme_send_coordinates(fr, cr, box, as_rvec_array(x.unpaddedArrayRef().data()), lambda[efptCOUL],
1120                                  lambda[efptVDW], (stepWork.computeVirial || stepWork.computeEnergy),
1121                                  step, simulationWork.useGpuPmePpCommunication, reinitGpuPmePpComms,
1122                                  pmeSendCoordinatesFromGpu, localXReadyOnDevice, wcycle);
1123     }
1124
1125     // Coordinates on the device are needed if PME or BufferOps are offloaded.
1126     // The local coordinates can be copied right away.
1127     // NOTE: Consider moving this copy to right after they are updated and constrained,
1128     //       if the later is not offloaded.
1129     if (useGpuPmeOnThisRank || stepWork.useGpuXBufferOps)
1130     {
1131         if (stepWork.doNeighborSearch)
1132         {
1133             // TODO refactor this to do_md, after partitioning.
1134             stateGpu->reinit(mdatoms->homenr,
1135                              cr->dd != nullptr ? dd_numAtomsZones(*cr->dd) : mdatoms->homenr);
1136             if (useGpuPmeOnThisRank)
1137             {
1138                 // TODO: This should be moved into PME setup function ( pme_gpu_prepare_computation(...) )
1139                 pme_gpu_set_device_x(fr->pmedata, stateGpu->getCoordinates());
1140             }
1141         }
1142         // We need to copy coordinates when:
1143         // 1. Update is not offloaded
1144         // 2. The buffers were reinitialized on search step
1145         if (!simulationWork.useGpuUpdate || stepWork.doNeighborSearch)
1146         {
1147             GMX_ASSERT(stateGpu != nullptr, "stateGpu should not be null");
1148             stateGpu->copyCoordinatesToGpu(x.unpaddedArrayRef(), AtomLocality::Local);
1149         }
1150     }
1151
1152     // TODO Update this comment when introducing SimulationWorkload
1153     //
1154     // The conditions for gpuHaloExchange e.g. using GPU buffer
1155     // operations were checked before construction, so here we can
1156     // just use it and assert upon any conditions.
1157     const bool ddUsesGpuDirectCommunication =
1158             ((cr->dd != nullptr) && (!cr->dd->gpuHaloExchange.empty()));
1159     GMX_ASSERT(!ddUsesGpuDirectCommunication || stepWork.useGpuXBufferOps,
1160                "Must use coordinate buffer ops with GPU halo exchange");
1161     const bool useGpuForcesHaloExchange = ddUsesGpuDirectCommunication && stepWork.useGpuFBufferOps;
1162
1163     // Copy coordinate from the GPU if update is on the GPU and there
1164     // are forces to be computed on the CPU, or for the computation of
1165     // virial, or if host-side data will be transferred from this task
1166     // to a remote task for halo exchange or PME-PP communication. At
1167     // search steps the current coordinates are already on the host,
1168     // hence copy is not needed.
1169     const bool haveHostPmePpComms =
1170             !thisRankHasDuty(cr, DUTY_PME) && !simulationWork.useGpuPmePpCommunication;
1171     const bool haveHostHaloExchangeComms = havePPDomainDecomposition(cr) && !ddUsesGpuDirectCommunication;
1172
1173     bool gmx_used_in_debug haveCopiedXFromGpu = false;
1174     if (simulationWork.useGpuUpdate && !stepWork.doNeighborSearch
1175         && (runScheduleWork->domainWork.haveCpuLocalForceWork || stepWork.computeVirial
1176             || haveHostPmePpComms || haveHostHaloExchangeComms))
1177     {
1178         GMX_ASSERT(stateGpu != nullptr, "stateGpu should not be null");
1179         stateGpu->copyCoordinatesFromGpu(x.unpaddedArrayRef(), AtomLocality::Local);
1180         haveCopiedXFromGpu = true;
1181     }
1182
1183     // If coordinates are to be sent to PME task from GPU memory, perform that send here.
1184     // Otherwise the send will occur before the H2D coordinate transfer.
1185     if (!thisRankHasDuty(cr, DUTY_PME) && pmeSendCoordinatesFromGpu)
1186     {
1187         /* Send particle coordinates to the pme nodes */
1188         gmx_pme_send_coordinates(fr, cr, box, as_rvec_array(x.unpaddedArrayRef().data()), lambda[efptCOUL],
1189                                  lambda[efptVDW], (stepWork.computeVirial || stepWork.computeEnergy),
1190                                  step, simulationWork.useGpuPmePpCommunication, reinitGpuPmePpComms,
1191                                  pmeSendCoordinatesFromGpu, localXReadyOnDevice, wcycle);
1192     }
1193
1194     if (useGpuPmeOnThisRank)
1195     {
1196         launchPmeGpuSpread(fr->pmedata, box, stepWork, localXReadyOnDevice, lambda[efptCOUL], wcycle);
1197     }
1198
1199     /* do gridding for pair search */
1200     if (stepWork.doNeighborSearch)
1201     {
1202         if (fr->wholeMoleculeTransform && stepWork.stateChanged)
1203         {
1204             fr->wholeMoleculeTransform->updateForAtomPbcJumps(x.unpaddedArrayRef(), box);
1205         }
1206
1207         // TODO
1208         // - vzero is constant, do we need to pass it?
1209         // - box_diag should be passed directly to nbnxn_put_on_grid
1210         //
1211         rvec vzero;
1212         clear_rvec(vzero);
1213
1214         rvec box_diag;
1215         box_diag[XX] = box[XX][XX];
1216         box_diag[YY] = box[YY][YY];
1217         box_diag[ZZ] = box[ZZ][ZZ];
1218
1219         wallcycle_start(wcycle, ewcNS);
1220         if (!DOMAINDECOMP(cr))
1221         {
1222             wallcycle_sub_start(wcycle, ewcsNBS_GRID_LOCAL);
1223             nbnxn_put_on_grid(nbv, box, 0, vzero, box_diag, nullptr, { 0, mdatoms->homenr }, -1,
1224                               fr->cginfo, x.unpaddedArrayRef(), 0, nullptr);
1225             wallcycle_sub_stop(wcycle, ewcsNBS_GRID_LOCAL);
1226         }
1227         else
1228         {
1229             wallcycle_sub_start(wcycle, ewcsNBS_GRID_NONLOCAL);
1230             nbnxn_put_on_grid_nonlocal(nbv, domdec_zones(cr->dd), fr->cginfo, x.unpaddedArrayRef());
1231             wallcycle_sub_stop(wcycle, ewcsNBS_GRID_NONLOCAL);
1232         }
1233
1234         nbv->setAtomProperties(gmx::constArrayRefFromArray(mdatoms->typeA, mdatoms->nr),
1235                                gmx::constArrayRefFromArray(mdatoms->chargeA, mdatoms->nr), fr->cginfo);
1236
1237         wallcycle_stop(wcycle, ewcNS);
1238
1239         /* initialize the GPU nbnxm atom data and bonded data structures */
1240         if (simulationWork.useGpuNonbonded)
1241         {
1242             wallcycle_start_nocount(wcycle, ewcLAUNCH_GPU);
1243
1244             wallcycle_sub_start_nocount(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1245             Nbnxm::gpu_init_atomdata(nbv->gpu_nbv, nbv->nbat.get());
1246             wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1247
1248             if (fr->gpuBonded)
1249             {
1250                 /* Now we put all atoms on the grid, we can assign bonded
1251                  * interactions to the GPU, where the grid order is
1252                  * needed. Also the xq, f and fshift device buffers have
1253                  * been reallocated if needed, so the bonded code can
1254                  * learn about them. */
1255                 // TODO the xq, f, and fshift buffers are now shared
1256                 // resources, so they should be maintained by a
1257                 // higher-level object than the nb module.
1258                 fr->gpuBonded->updateInteractionListsAndDeviceBuffers(
1259                         nbv->getGridIndices(), top->idef, Nbnxm::gpu_get_xq(nbv->gpu_nbv),
1260                         Nbnxm::gpu_get_f(nbv->gpu_nbv), Nbnxm::gpu_get_fshift(nbv->gpu_nbv));
1261             }
1262             wallcycle_stop(wcycle, ewcLAUNCH_GPU);
1263         }
1264
1265         // Need to run after the GPU-offload bonded interaction lists
1266         // are set up to be able to determine whether there is bonded work.
1267         runScheduleWork->domainWork = setupDomainLifetimeWorkload(
1268                 *inputrec, *fr, pull_work, ed, *mdatoms, simulationWork, stepWork);
1269
1270         wallcycle_start_nocount(wcycle, ewcNS);
1271         wallcycle_sub_start(wcycle, ewcsNBS_SEARCH_LOCAL);
1272         /* Note that with a GPU the launch overhead of the list transfer is not timed separately */
1273         nbv->constructPairlist(InteractionLocality::Local, top->excls, step, nrnb);
1274
1275         nbv->setupGpuShortRangeWork(fr->gpuBonded, InteractionLocality::Local);
1276
1277         wallcycle_sub_stop(wcycle, ewcsNBS_SEARCH_LOCAL);
1278         wallcycle_stop(wcycle, ewcNS);
1279
1280         if (stepWork.useGpuXBufferOps)
1281         {
1282             nbv->atomdata_init_copy_x_to_nbat_x_gpu();
1283         }
1284         // For force buffer ops, we use the below conditon rather than
1285         // useGpuFBufferOps to ensure that init is performed even if this
1286         // NS step is also a virial step (on which f buf ops are deactivated).
1287         if (GMX_GPU_CUDA && simulationWork.useGpuBufferOps && simulationWork.useGpuNonbonded)
1288         {
1289             GMX_ASSERT(stateGpu, "stateGpu should be valid when buffer ops are offloaded");
1290             nbv->atomdata_init_add_nbat_f_to_f_gpu(stateGpu->fReducedOnDevice());
1291         }
1292     }
1293     else if (!EI_TPI(inputrec->eI))
1294     {
1295         if (stepWork.useGpuXBufferOps)
1296         {
1297             GMX_ASSERT(stateGpu, "stateGpu should be valid when buffer ops are offloaded");
1298             nbv->convertCoordinatesGpu(AtomLocality::Local, false, stateGpu->getCoordinates(),
1299                                        localXReadyOnDevice);
1300         }
1301         else
1302         {
1303             if (simulationWork.useGpuUpdate)
1304             {
1305                 GMX_ASSERT(stateGpu, "need a valid stateGpu object");
1306                 GMX_ASSERT(haveCopiedXFromGpu,
1307                            "a wait should only be triggered if copy has been scheduled");
1308                 stateGpu->waitCoordinatesReadyOnHost(AtomLocality::Local);
1309             }
1310             nbv->convertCoordinates(AtomLocality::Local, false, x.unpaddedArrayRef());
1311         }
1312     }
1313
1314     const gmx::DomainLifetimeWorkload& domainWork = runScheduleWork->domainWork;
1315
1316     if (simulationWork.useGpuNonbonded)
1317     {
1318         ddBalanceRegionHandler.openBeforeForceComputationGpu();
1319
1320         wallcycle_start(wcycle, ewcLAUNCH_GPU);
1321
1322         wallcycle_sub_start(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1323         Nbnxm::gpu_upload_shiftvec(nbv->gpu_nbv, nbv->nbat.get());
1324         if (stepWork.doNeighborSearch || !stepWork.useGpuXBufferOps)
1325         {
1326             Nbnxm::gpu_copy_xq_to_gpu(nbv->gpu_nbv, nbv->nbat.get(), AtomLocality::Local);
1327         }
1328         wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1329         // with X buffer ops offloaded to the GPU on all but the search steps
1330
1331         // bonded work not split into separate local and non-local, so with DD
1332         // we can only launch the kernel after non-local coordinates have been received.
1333         if (domainWork.haveGpuBondedWork && !havePPDomainDecomposition(cr))
1334         {
1335             wallcycle_sub_start(wcycle, ewcsLAUNCH_GPU_BONDED);
1336             fr->gpuBonded->setPbcAndlaunchKernel(fr->pbcType, box, fr->bMolPBC, stepWork);
1337             wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_BONDED);
1338         }
1339
1340         /* launch local nonbonded work on GPU */
1341         wallcycle_sub_start_nocount(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1342         do_nb_verlet(fr, ic, enerd, stepWork, InteractionLocality::Local, enbvClearFNo, step, nrnb, wcycle);
1343         wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1344         wallcycle_stop(wcycle, ewcLAUNCH_GPU);
1345     }
1346
1347     if (useGpuPmeOnThisRank)
1348     {
1349         // In PME GPU and mixed mode we launch FFT / gather after the
1350         // X copy/transform to allow overlap as well as after the GPU NB
1351         // launch to avoid FFT launch overhead hijacking the CPU and delaying
1352         // the nonbonded kernel.
1353         launchPmeGpuFftAndGather(fr->pmedata, lambda[efptCOUL], wcycle, stepWork);
1354     }
1355
1356     /* Communicate coordinates and sum dipole if necessary +
1357        do non-local pair search */
1358     if (havePPDomainDecomposition(cr))
1359     {
1360         if (stepWork.doNeighborSearch)
1361         {
1362             // TODO: fuse this branch with the above large stepWork.doNeighborSearch block
1363             wallcycle_start_nocount(wcycle, ewcNS);
1364             wallcycle_sub_start(wcycle, ewcsNBS_SEARCH_NONLOCAL);
1365             /* Note that with a GPU the launch overhead of the list transfer is not timed separately */
1366             nbv->constructPairlist(InteractionLocality::NonLocal, top->excls, step, nrnb);
1367
1368             nbv->setupGpuShortRangeWork(fr->gpuBonded, InteractionLocality::NonLocal);
1369             wallcycle_sub_stop(wcycle, ewcsNBS_SEARCH_NONLOCAL);
1370             wallcycle_stop(wcycle, ewcNS);
1371             // TODO refactor this GPU halo exchange re-initialisation
1372             // to location in do_md where GPU halo exchange is
1373             // constructed at partitioning, after above stateGpu
1374             // re-initialization has similarly been refactored
1375             if (ddUsesGpuDirectCommunication)
1376             {
1377                 reinitGpuHaloExchange(*cr, stateGpu->getCoordinates(), stateGpu->getForces());
1378             }
1379         }
1380         else
1381         {
1382             if (ddUsesGpuDirectCommunication)
1383             {
1384                 // The following must be called after local setCoordinates (which records an event
1385                 // when the coordinate data has been copied to the device).
1386                 communicateGpuHaloCoordinates(*cr, box, localXReadyOnDevice);
1387
1388                 if (domainWork.haveCpuBondedWork || domainWork.haveFreeEnergyWork)
1389                 {
1390                     // non-local part of coordinate buffer must be copied back to host for CPU work
1391                     stateGpu->copyCoordinatesFromGpu(x.unpaddedArrayRef(), AtomLocality::NonLocal);
1392                 }
1393             }
1394             else
1395             {
1396                 // Note: GPU update + DD without direct communication is not supported,
1397                 // a waitCoordinatesReadyOnHost() should be issued if it will be.
1398                 GMX_ASSERT(!simulationWork.useGpuUpdate,
1399                            "GPU update is not supported with CPU halo exchange");
1400                 dd_move_x(cr->dd, box, x.unpaddedArrayRef(), wcycle);
1401             }
1402
1403             if (stepWork.useGpuXBufferOps)
1404             {
1405                 if (!useGpuPmeOnThisRank && !ddUsesGpuDirectCommunication)
1406                 {
1407                     stateGpu->copyCoordinatesToGpu(x.unpaddedArrayRef(), AtomLocality::NonLocal);
1408                 }
1409                 nbv->convertCoordinatesGpu(AtomLocality::NonLocal, false, stateGpu->getCoordinates(),
1410                                            stateGpu->getCoordinatesReadyOnDeviceEvent(
1411                                                    AtomLocality::NonLocal, simulationWork, stepWork));
1412             }
1413             else
1414             {
1415                 nbv->convertCoordinates(AtomLocality::NonLocal, false, x.unpaddedArrayRef());
1416             }
1417         }
1418
1419         if (simulationWork.useGpuNonbonded)
1420         {
1421             wallcycle_start(wcycle, ewcLAUNCH_GPU);
1422
1423             if (stepWork.doNeighborSearch || !stepWork.useGpuXBufferOps)
1424             {
1425                 wallcycle_sub_start(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1426                 Nbnxm::gpu_copy_xq_to_gpu(nbv->gpu_nbv, nbv->nbat.get(), AtomLocality::NonLocal);
1427                 wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1428             }
1429
1430             if (domainWork.haveGpuBondedWork)
1431             {
1432                 wallcycle_sub_start(wcycle, ewcsLAUNCH_GPU_BONDED);
1433                 fr->gpuBonded->setPbcAndlaunchKernel(fr->pbcType, box, fr->bMolPBC, stepWork);
1434                 wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_BONDED);
1435             }
1436
1437             /* launch non-local nonbonded tasks on GPU */
1438             wallcycle_sub_start(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1439             do_nb_verlet(fr, ic, enerd, stepWork, InteractionLocality::NonLocal, enbvClearFNo, step,
1440                          nrnb, wcycle);
1441             wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1442
1443             wallcycle_stop(wcycle, ewcLAUNCH_GPU);
1444         }
1445     }
1446
1447     if (simulationWork.useGpuNonbonded)
1448     {
1449         /* launch D2H copy-back F */
1450         wallcycle_start_nocount(wcycle, ewcLAUNCH_GPU);
1451         wallcycle_sub_start_nocount(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1452
1453         if (havePPDomainDecomposition(cr))
1454         {
1455             Nbnxm::gpu_launch_cpyback(nbv->gpu_nbv, nbv->nbat.get(), stepWork, AtomLocality::NonLocal);
1456         }
1457         Nbnxm::gpu_launch_cpyback(nbv->gpu_nbv, nbv->nbat.get(), stepWork, AtomLocality::Local);
1458         wallcycle_sub_stop(wcycle, ewcsLAUNCH_GPU_NONBONDED);
1459
1460         if (domainWork.haveGpuBondedWork && stepWork.computeEnergy)
1461         {
1462             fr->gpuBonded->launchEnergyTransfer();
1463         }
1464         wallcycle_stop(wcycle, ewcLAUNCH_GPU);
1465     }
1466
1467     gmx::ArrayRef<const gmx::RVec> xWholeMolecules;
1468     if (fr->wholeMoleculeTransform)
1469     {
1470         xWholeMolecules = fr->wholeMoleculeTransform->wholeMoleculeCoordinates(x.unpaddedArrayRef(), box);
1471     }
1472
1473     DipoleData dipoleData;
1474
1475     if (simulationWork.computeMuTot)
1476     {
1477         const int start = 0;
1478
1479         /* Calculate total (local) dipole moment in a temporary common array.
1480          * This makes it possible to sum them over nodes faster.
1481          */
1482         gmx::ArrayRef<const gmx::RVec> xRef =
1483                 (xWholeMolecules.empty() ? x.unpaddedArrayRef() : xWholeMolecules);
1484         calc_mu(start, mdatoms->homenr, xRef, mdatoms->chargeA, mdatoms->chargeB,
1485                 mdatoms->nChargePerturbed, dipoleData.muStaging[0], dipoleData.muStaging[1]);
1486
1487         reduceAndUpdateMuTot(&dipoleData, cr, (fr->efep != efepNO), lambda, muTotal, ddBalanceRegionHandler);
1488     }
1489
1490     /* Reset energies */
1491     reset_enerdata(enerd);
1492
1493     if (DOMAINDECOMP(cr) && !thisRankHasDuty(cr, DUTY_PME))
1494     {
1495         wallcycle_start(wcycle, ewcPPDURINGPME);
1496         dd_force_flop_start(cr->dd, nrnb);
1497     }
1498
1499     // For the rest of the CPU tasks that depend on GPU-update produced coordinates,
1500     // this wait ensures that the D2H transfer is complete.
1501     if ((simulationWork.useGpuUpdate)
1502         && (runScheduleWork->domainWork.haveCpuLocalForceWork || stepWork.computeVirial))
1503     {
1504         stateGpu->waitCoordinatesReadyOnHost(AtomLocality::Local);
1505     }
1506
1507     if (inputrec->bRot)
1508     {
1509         wallcycle_start(wcycle, ewcROT);
1510         do_rotation(cr, enforcedRotation, box, as_rvec_array(x.unpaddedArrayRef().data()), t, step,
1511                     stepWork.doNeighborSearch);
1512         wallcycle_stop(wcycle, ewcROT);
1513     }
1514
1515     /* Start the force cycle counter.
1516      * Note that a different counter is used for dynamic load balancing.
1517      */
1518     wallcycle_start(wcycle, ewcFORCE);
1519
1520     // Set up and clear force outputs.
1521     // We use std::move to keep the compiler happy, it has no effect.
1522     ForceOutputs forceOut = setupForceOutputs(fr->forceHelperBuffers.get(), pull_work, *inputrec,
1523                                               std::move(force), stepWork, wcycle);
1524
1525     /* We calculate the non-bonded forces, when done on the CPU, here.
1526      * We do this before calling do_force_lowlevel, because in that
1527      * function, the listed forces are calculated before PME, which
1528      * does communication.  With this order, non-bonded and listed
1529      * force calculation imbalance can be balanced out by the domain
1530      * decomposition load balancing.
1531      */
1532
1533     const bool useOrEmulateGpuNb = simulationWork.useGpuNonbonded || fr->nbv->emulateGpu();
1534
1535     if (!useOrEmulateGpuNb)
1536     {
1537         do_nb_verlet(fr, ic, enerd, stepWork, InteractionLocality::Local, enbvClearFYes, step, nrnb, wcycle);
1538     }
1539
1540     if (fr->efep != efepNO)
1541     {
1542         /* Calculate the local and non-local free energy interactions here.
1543          * Happens here on the CPU both with and without GPU.
1544          */
1545         nbv->dispatchFreeEnergyKernel(InteractionLocality::Local, fr,
1546                                       as_rvec_array(x.unpaddedArrayRef().data()),
1547                                       &forceOut.forceWithShiftForces(), *mdatoms, inputrec->fepvals,
1548                                       lambda, enerd, stepWork, nrnb);
1549
1550         if (havePPDomainDecomposition(cr))
1551         {
1552             nbv->dispatchFreeEnergyKernel(InteractionLocality::NonLocal, fr,
1553                                           as_rvec_array(x.unpaddedArrayRef().data()),
1554                                           &forceOut.forceWithShiftForces(), *mdatoms,
1555                                           inputrec->fepvals, lambda, enerd, stepWork, nrnb);
1556         }
1557     }
1558
1559     if (!useOrEmulateGpuNb)
1560     {
1561         if (havePPDomainDecomposition(cr))
1562         {
1563             do_nb_verlet(fr, ic, enerd, stepWork, InteractionLocality::NonLocal, enbvClearFNo, step,
1564                          nrnb, wcycle);
1565         }
1566
1567         if (stepWork.computeForces)
1568         {
1569             /* Add all the non-bonded force to the normal force array.
1570              * This can be split into a local and a non-local part when overlapping
1571              * communication with calculation with domain decomposition.
1572              */
1573             wallcycle_stop(wcycle, ewcFORCE);
1574             nbv->atomdata_add_nbat_f_to_f(AtomLocality::All, forceOut.forceWithShiftForces().force());
1575             wallcycle_start_nocount(wcycle, ewcFORCE);
1576         }
1577
1578         /* If there are multiple fshift output buffers we need to reduce them */
1579         if (stepWork.computeVirial)
1580         {
1581             /* This is not in a subcounter because it takes a
1582                negligible and constant-sized amount of time */
1583             nbnxn_atomdata_add_nbat_fshift_to_fshift(*nbv->nbat,
1584                                                      forceOut.forceWithShiftForces().shiftForces());
1585         }
1586     }
1587
1588     // TODO Force flags should include haveFreeEnergyWork for this domain
1589     if (ddUsesGpuDirectCommunication && (domainWork.haveCpuBondedWork || domainWork.haveFreeEnergyWork))
1590     {
1591         /* Wait for non-local coordinate data to be copied from device */
1592         stateGpu->waitCoordinatesReadyOnHost(AtomLocality::NonLocal);
1593     }
1594
1595     // Compute wall interactions, when present.
1596     // Note: should be moved to special forces.
1597     if (inputrec->nwall && stepWork.computeNonbondedForces)
1598     {
1599         /* foreign lambda component for walls */
1600         real dvdl_walls = do_walls(*inputrec, *fr, box, *mdatoms, x.unpaddedConstArrayRef(),
1601                                    &forceOut.forceWithVirial(), lambda[efptVDW],
1602                                    enerd->grpp.ener[egLJSR].data(), nrnb);
1603         enerd->dvdl_lin[efptVDW] += dvdl_walls;
1604     }
1605
1606     if (stepWork.computeListedForces)
1607     {
1608         /* Check whether we need to take into account PBC in listed interactions */
1609         bool needMolPbc = false;
1610         for (const auto& listedForces : fr->listedForces)
1611         {
1612             if (listedForces.haveCpuListedForces(*fr->fcdata))
1613             {
1614                 needMolPbc = fr->bMolPBC;
1615             }
1616         }
1617
1618         t_pbc pbc;
1619
1620         if (needMolPbc)
1621         {
1622             /* Since all atoms are in the rectangular or triclinic unit-cell,
1623              * only single box vector shifts (2 in x) are required.
1624              */
1625             set_pbc_dd(&pbc, fr->pbcType, DOMAINDECOMP(cr) ? cr->dd->numCells : nullptr, TRUE, box);
1626         }
1627
1628         for (auto& listedForces : fr->listedForces)
1629         {
1630             listedForces.calculate(
1631                     wcycle, box, inputrec->fepvals, cr, ms, x, xWholeMolecules, fr->fcdata.get(),
1632                     hist, &forceOut, fr, &pbc, enerd, nrnb, lambda.data(), mdatoms,
1633                     DOMAINDECOMP(cr) ? cr->dd->globalAtomIndices.data() : nullptr, stepWork);
1634         }
1635     }
1636
1637     calculateLongRangeNonbondeds(fr, inputrec, cr, nrnb, wcycle, mdatoms, x.unpaddedConstArrayRef(),
1638                                  &forceOut.forceWithVirial(), enerd, box, lambda.data(),
1639                                  as_rvec_array(dipoleData.muStateAB), stepWork, ddBalanceRegionHandler);
1640
1641     wallcycle_stop(wcycle, ewcFORCE);
1642
1643     // VdW dispersion correction, only computed on master rank to avoid double counting
1644     if ((stepWork.computeEnergy || stepWork.computeVirial) && fr->dispersionCorrection && MASTER(cr))
1645     {
1646         // Calculate long range corrections to pressure and energy
1647         const DispersionCorrection::Correction correction =
1648                 fr->dispersionCorrection->calculate(box, lambda[efptVDW]);
1649
1650         if (stepWork.computeEnergy)
1651         {
1652             enerd->term[F_DISPCORR] = correction.energy;
1653             enerd->term[F_DVDL_VDW] += correction.dvdl;
1654             enerd->dvdl_lin[efptVDW] += correction.dvdl;
1655         }
1656         if (stepWork.computeVirial)
1657         {
1658             correction.correctVirial(vir_force);
1659             enerd->term[F_PDISPCORR] = correction.pressure;
1660         }
1661     }
1662
1663     computeSpecialForces(fplog, cr, inputrec, awh, enforcedRotation, imdSession, pull_work, step, t,
1664                          wcycle, fr->forceProviders, box, x.unpaddedArrayRef(), mdatoms, lambda,
1665                          stepWork, &forceOut.forceWithVirial(), enerd, ed, stepWork.doNeighborSearch);
1666
1667
1668     // Will store the amount of cycles spent waiting for the GPU that
1669     // will be later used in the DLB accounting.
1670     float cycles_wait_gpu = 0;
1671     if (useOrEmulateGpuNb)
1672     {
1673         auto& forceWithShiftForces = forceOut.forceWithShiftForces();
1674
1675         /* wait for non-local forces (or calculate in emulation mode) */
1676         if (havePPDomainDecomposition(cr))
1677         {
1678             if (simulationWork.useGpuNonbonded)
1679             {
1680                 cycles_wait_gpu += Nbnxm::gpu_wait_finish_task(
1681                         nbv->gpu_nbv, stepWork, AtomLocality::NonLocal, enerd->grpp.ener[egLJSR].data(),
1682                         enerd->grpp.ener[egCOULSR].data(), forceWithShiftForces.shiftForces(), wcycle);
1683             }
1684             else
1685             {
1686                 wallcycle_start_nocount(wcycle, ewcFORCE);
1687                 do_nb_verlet(fr, ic, enerd, stepWork, InteractionLocality::NonLocal, enbvClearFYes,
1688                              step, nrnb, wcycle);
1689                 wallcycle_stop(wcycle, ewcFORCE);
1690             }
1691
1692             if (stepWork.useGpuFBufferOps)
1693             {
1694                 gmx::FixedCapacityVector<GpuEventSynchronizer*, 1> dependencyList;
1695
1696                 // TODO: move this into DomainLifetimeWorkload, including the second part of the
1697                 // condition The bonded and free energy CPU tasks can have non-local force
1698                 // contributions which are a dependency for the GPU force reduction.
1699                 bool haveNonLocalForceContribInCpuBuffer =
1700                         domainWork.haveCpuBondedWork || domainWork.haveFreeEnergyWork;
1701
1702                 if (haveNonLocalForceContribInCpuBuffer)
1703                 {
1704                     stateGpu->copyForcesToGpu(forceOut.forceWithShiftForces().force(),
1705                                               AtomLocality::NonLocal);
1706                     dependencyList.push_back(stateGpu->getForcesReadyOnDeviceEvent(
1707                             AtomLocality::NonLocal, stepWork.useGpuFBufferOps));
1708                 }
1709
1710                 nbv->atomdata_add_nbat_f_to_f_gpu(AtomLocality::NonLocal, stateGpu->getForces(),
1711                                                   pme_gpu_get_device_f(fr->pmedata), dependencyList,
1712                                                   false, haveNonLocalForceContribInCpuBuffer);
1713                 if (!useGpuForcesHaloExchange)
1714                 {
1715                     // copy from GPU input for dd_move_f()
1716                     stateGpu->copyForcesFromGpu(forceOut.forceWithShiftForces().force(),
1717                                                 AtomLocality::NonLocal);
1718                 }
1719             }
1720             else
1721             {
1722                 nbv->atomdata_add_nbat_f_to_f(AtomLocality::NonLocal, forceWithShiftForces.force());
1723             }
1724
1725
1726             if (fr->nbv->emulateGpu() && stepWork.computeVirial)
1727             {
1728                 nbnxn_atomdata_add_nbat_fshift_to_fshift(*nbv->nbat, forceWithShiftForces.shiftForces());
1729             }
1730         }
1731     }
1732
1733     if (havePPDomainDecomposition(cr))
1734     {
1735         /* We are done with the CPU compute.
1736          * We will now communicate the non-local forces.
1737          * If we use a GPU this will overlap with GPU work, so in that case
1738          * we do not close the DD force balancing region here.
1739          */
1740         ddBalanceRegionHandler.closeAfterForceComputationCpu();
1741
1742         if (stepWork.computeForces)
1743         {
1744
1745             if (useGpuForcesHaloExchange)
1746             {
1747                 if (domainWork.haveCpuLocalForceWork)
1748                 {
1749                     stateGpu->copyForcesToGpu(forceOut.forceWithShiftForces().force(), AtomLocality::Local);
1750                 }
1751                 communicateGpuHaloForces(*cr, domainWork.haveCpuLocalForceWork);
1752             }
1753             else
1754             {
1755                 if (stepWork.useGpuFBufferOps)
1756                 {
1757                     stateGpu->waitForcesReadyOnHost(AtomLocality::NonLocal);
1758                 }
1759                 dd_move_f(cr->dd, &forceOut.forceWithShiftForces(), wcycle);
1760             }
1761         }
1762     }
1763
1764     // With both nonbonded and PME offloaded a GPU on the same rank, we use
1765     // an alternating wait/reduction scheme.
1766     bool alternateGpuWait = (!c_disableAlternatingWait && useGpuPmeOnThisRank && simulationWork.useGpuNonbonded
1767                              && !DOMAINDECOMP(cr) && !stepWork.useGpuFBufferOps);
1768     if (alternateGpuWait)
1769     {
1770         alternatePmeNbGpuWaitReduce(fr->nbv.get(), fr->pmedata, &forceOut, enerd, lambda[efptCOUL],
1771                                     stepWork, wcycle);
1772     }
1773
1774     if (!alternateGpuWait && useGpuPmeOnThisRank)
1775     {
1776         pme_gpu_wait_and_reduce(fr->pmedata, stepWork, wcycle, &forceOut.forceWithVirial(), enerd,
1777                                 lambda[efptCOUL]);
1778     }
1779
1780     /* Wait for local GPU NB outputs on the non-alternating wait path */
1781     if (!alternateGpuWait && simulationWork.useGpuNonbonded)
1782     {
1783         /* Measured overhead on CUDA and OpenCL with(out) GPU sharing
1784          * is between 0.5 and 1.5 Mcycles. So 2 MCycles is an overestimate,
1785          * but even with a step of 0.1 ms the difference is less than 1%
1786          * of the step time.
1787          */
1788         const float gpuWaitApiOverheadMargin = 2e6F; /* cycles */
1789         const float waitCycles               = Nbnxm::gpu_wait_finish_task(
1790                 nbv->gpu_nbv, stepWork, AtomLocality::Local, enerd->grpp.ener[egLJSR].data(),
1791                 enerd->grpp.ener[egCOULSR].data(), forceOut.forceWithShiftForces().shiftForces(), wcycle);
1792
1793         if (ddBalanceRegionHandler.useBalancingRegion())
1794         {
1795             DdBalanceRegionWaitedForGpu waitedForGpu = DdBalanceRegionWaitedForGpu::yes;
1796             if (stepWork.computeForces && waitCycles <= gpuWaitApiOverheadMargin)
1797             {
1798                 /* We measured few cycles, it could be that the kernel
1799                  * and transfer finished earlier and there was no actual
1800                  * wait time, only API call overhead.
1801                  * Then the actual time could be anywhere between 0 and
1802                  * cycles_wait_est. We will use half of cycles_wait_est.
1803                  */
1804                 waitedForGpu = DdBalanceRegionWaitedForGpu::no;
1805             }
1806             ddBalanceRegionHandler.closeAfterForceComputationGpu(cycles_wait_gpu, waitedForGpu);
1807         }
1808     }
1809
1810     if (fr->nbv->emulateGpu())
1811     {
1812         // NOTE: emulation kernel is not included in the balancing region,
1813         // but emulation mode does not target performance anyway
1814         wallcycle_start_nocount(wcycle, ewcFORCE);
1815         do_nb_verlet(fr, ic, enerd, stepWork, InteractionLocality::Local,
1816                      DOMAINDECOMP(cr) ? enbvClearFNo : enbvClearFYes, step, nrnb, wcycle);
1817         wallcycle_stop(wcycle, ewcFORCE);
1818     }
1819
1820     // If on GPU PME-PP comms or GPU update path, receive forces from PME before GPU buffer ops
1821     // TODO refactor this and unify with below default-path call to the same function
1822     if (PAR(cr) && !thisRankHasDuty(cr, DUTY_PME)
1823         && (simulationWork.useGpuPmePpCommunication || simulationWork.useGpuUpdate))
1824     {
1825         /* In case of node-splitting, the PP nodes receive the long-range
1826          * forces, virial and energy from the PME nodes here.
1827          */
1828         pme_receive_force_ener(fr, cr, &forceOut.forceWithVirial(), enerd,
1829                                simulationWork.useGpuPmePpCommunication,
1830                                stepWork.useGpuPmeFReduction, wcycle);
1831     }
1832
1833
1834     /* Do the nonbonded GPU (or emulation) force buffer reduction
1835      * on the non-alternating path. */
1836     if (useOrEmulateGpuNb && !alternateGpuWait)
1837     {
1838         // TODO simplify the below conditionals. Pass buffer and sync pointers at init stage rather than here. Unify getter fns for sameGPU/otherGPU cases.
1839         void* pmeForcePtr =
1840                 stepWork.useGpuPmeFReduction
1841                         ? (thisRankHasDuty(cr, DUTY_PME) ? pme_gpu_get_device_f(fr->pmedata)
1842                                                          : // PME force buffer on same GPU
1843                                    fr->pmePpCommGpu->getGpuForceStagingPtr()) // buffer received from other GPU
1844                         : nullptr; // PME reduction not active on GPU
1845
1846         GpuEventSynchronizer* const pmeSynchronizer =
1847                 stepWork.useGpuPmeFReduction
1848                         ? (thisRankHasDuty(cr, DUTY_PME) ? pme_gpu_get_f_ready_synchronizer(fr->pmedata)
1849                                                          : // PME force buffer on same GPU
1850                                    static_cast<GpuEventSynchronizer*>(
1851                                            fr->pmePpCommGpu->getForcesReadySynchronizer())) // buffer received from other GPU
1852                         : nullptr; // PME reduction not active on GPU
1853
1854         gmx::FixedCapacityVector<GpuEventSynchronizer*, 3> dependencyList;
1855
1856         if (stepWork.useGpuPmeFReduction)
1857         {
1858             dependencyList.push_back(pmeSynchronizer);
1859         }
1860
1861         gmx::ArrayRef<gmx::RVec> forceWithShift = forceOut.forceWithShiftForces().force();
1862
1863         if (stepWork.useGpuFBufferOps)
1864         {
1865             // Flag to specify whether the CPU force buffer has contributions to
1866             // local atoms. This depends on whether there are CPU-based force tasks
1867             // or when DD is active the halo exchange has resulted in contributions
1868             // from the non-local part.
1869             const bool haveLocalForceContribInCpuBuffer =
1870                     (domainWork.haveCpuLocalForceWork || havePPDomainDecomposition(cr));
1871
1872             // TODO: move these steps as early as possible:
1873             // - CPU f H2D should be as soon as all CPU-side forces are done
1874             // - wait for force reduction does not need to block host (at least not here, it's sufficient to wait
1875             //   before the next CPU task that consumes the forces: vsite spread or update)
1876             // - copy is not perfomed if GPU force halo exchange is active, because it would overwrite the result
1877             //   of the halo exchange. In that case the copy is instead performed above, before the exchange.
1878             //   These should be unified.
1879             if (haveLocalForceContribInCpuBuffer && !useGpuForcesHaloExchange)
1880             {
1881                 // Note: AtomLocality::All is used for the non-DD case because, as in this
1882                 // case copyForcesToGpu() uses a separate stream, it allows overlap of
1883                 // CPU force H2D with GPU force tasks on all streams including those in the
1884                 // local stream which would otherwise be implicit dependencies for the
1885                 // transfer and would not overlap.
1886                 auto locality = havePPDomainDecomposition(cr) ? AtomLocality::Local : AtomLocality::All;
1887
1888                 stateGpu->copyForcesToGpu(forceWithShift, locality);
1889                 dependencyList.push_back(
1890                         stateGpu->getForcesReadyOnDeviceEvent(locality, stepWork.useGpuFBufferOps));
1891             }
1892             if (useGpuForcesHaloExchange)
1893             {
1894                 dependencyList.push_back(cr->dd->gpuHaloExchange[0]->getForcesReadyOnDeviceEvent());
1895             }
1896             nbv->atomdata_add_nbat_f_to_f_gpu(AtomLocality::Local, stateGpu->getForces(), pmeForcePtr,
1897                                               dependencyList, stepWork.useGpuPmeFReduction,
1898                                               haveLocalForceContribInCpuBuffer);
1899             // Copy forces to host if they are needed for update or if virtual sites are enabled.
1900             // If there are vsites, we need to copy forces every step to spread vsite forces on host.
1901             // TODO: When the output flags will be included in step workload, this copy can be combined with the
1902             //       copy call done in sim_utils(...) for the output.
1903             // NOTE: If there are virtual sites, the forces are modified on host after this D2H copy. Hence,
1904             //       they should not be copied in do_md(...) for the output.
1905             if (!simulationWork.useGpuUpdate || vsite)
1906             {
1907                 stateGpu->copyForcesFromGpu(forceWithShift, AtomLocality::Local);
1908                 stateGpu->waitForcesReadyOnHost(AtomLocality::Local);
1909             }
1910         }
1911         else
1912         {
1913             nbv->atomdata_add_nbat_f_to_f(AtomLocality::Local, forceWithShift);
1914         }
1915     }
1916
1917     launchGpuEndOfStepTasks(nbv, fr->gpuBonded, fr->pmedata, enerd, *runScheduleWork,
1918                             useGpuPmeOnThisRank, step, wcycle);
1919
1920     if (DOMAINDECOMP(cr))
1921     {
1922         dd_force_flop_stop(cr->dd, nrnb);
1923     }
1924
1925     if (stepWork.computeForces)
1926     {
1927         postProcessForceWithShiftForces(nrnb, wcycle, box, x.unpaddedArrayRef(), &forceOut,
1928                                         vir_force, *mdatoms, *fr, vsite, stepWork);
1929     }
1930
1931     // TODO refactor this and unify with above GPU PME-PP / GPU update path call to the same function
1932     if (PAR(cr) && !thisRankHasDuty(cr, DUTY_PME) && !simulationWork.useGpuPmePpCommunication
1933         && !simulationWork.useGpuUpdate)
1934     {
1935         /* In case of node-splitting, the PP nodes receive the long-range
1936          * forces, virial and energy from the PME nodes here.
1937          */
1938         pme_receive_force_ener(fr, cr, &forceOut.forceWithVirial(), enerd,
1939                                simulationWork.useGpuPmePpCommunication, false, wcycle);
1940     }
1941
1942     if (stepWork.computeForces)
1943     {
1944         postProcessForces(cr, step, nrnb, wcycle, box, x.unpaddedArrayRef(), &forceOut, vir_force,
1945                           mdatoms, fr, vsite, stepWork);
1946     }
1947
1948     if (stepWork.computeEnergy)
1949     {
1950         /* Compute the final potential energy terms */
1951         accumulatePotentialEnergies(enerd, lambda, inputrec->fepvals);
1952
1953         if (!EI_TPI(inputrec->eI))
1954         {
1955             checkPotentialEnergyValidity(step, *enerd, *inputrec);
1956         }
1957     }
1958
1959     /* In case we don't have constraints and are using GPUs, the next balancing
1960      * region starts here.
1961      * Some "special" work at the end of do_force_cuts?, such as vsite spread,
1962      * virial calculation and COM pulling, is not thus not included in
1963      * the balance timing, which is ok as most tasks do communication.
1964      */
1965     ddBalanceRegionHandler.openBeforeForceComputationCpu(DdAllowBalanceRegionReopen::no);
1966 }