Remove thread-MPI limitation for GPU direct PME-PP communication
[alexxy/gromacs.git] / src / gromacs / ewald / pme_only.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,2014,2015,2016,2017 by the GROMACS development team.
7  * Copyright (c) 2018,2019,2020,2021, by the GROMACS development team, led by
8  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
9  * and including many others, as listed in the AUTHORS file in the
10  * top-level source directory and at http://www.gromacs.org.
11  *
12  * GROMACS is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public License
14  * as published by the Free Software Foundation; either version 2.1
15  * of the License, or (at your option) any later version.
16  *
17  * GROMACS is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with GROMACS; if not, see
24  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
26  *
27  * If you want to redistribute modifications to GROMACS, please
28  * consider that scientific software is very special. Version
29  * control is crucial - bugs must be traceable. We will be happy to
30  * consider code for inclusion in the official distribution, but
31  * derived work must not be called official GROMACS. Details are found
32  * in the README & COPYING files - if they are missing, get the
33  * official version at http://www.gromacs.org.
34  *
35  * To help us fund GROMACS development, we humbly ask that you cite
36  * the research papers on the package. Check out http://www.gromacs.org.
37  */
38 /* IMPORTANT FOR DEVELOPERS:
39  *
40  * Triclinic pme stuff isn't entirely trivial, and we've experienced
41  * some bugs during development (many of them due to me). To avoid
42  * this in the future, please check the following things if you make
43  * changes in this file:
44  *
45  * 1. You should obtain identical (at least to the PME precision)
46  *    energies, forces, and virial for
47  *    a rectangular box and a triclinic one where the z (or y) axis is
48  *    tilted a whole box side. For instance you could use these boxes:
49  *
50  *    rectangular       triclinic
51  *     2  0  0           2  0  0
52  *     0  2  0           0  2  0
53  *     0  0  6           2  2  6
54  *
55  * 2. You should check the energy conservation in a triclinic box.
56  *
57  * It might seem an overkill, but better safe than sorry.
58  * /Erik 001109
59  */
60
61 #include "gmxpre.h"
62
63 #include "pme_only.h"
64
65 #include "config.h"
66
67 #include <cassert>
68 #include <cmath>
69 #include <cstdio>
70 #include <cstdlib>
71 #include <cstring>
72
73 #include <memory>
74 #include <numeric>
75 #include <vector>
76
77 #include "gromacs/domdec/domdec.h"
78 #include "gromacs/ewald/pme.h"
79 #include "gromacs/ewald/pme_coordinate_receiver_gpu.h"
80 #include "gromacs/ewald/pme_force_sender_gpu.h"
81 #include "gromacs/fft/parallel_3dfft.h"
82 #include "gromacs/fileio/pdbio.h"
83 #include "gromacs/gmxlib/network.h"
84 #include "gromacs/gmxlib/nrnb.h"
85 #include "gromacs/gpu_utils/device_stream_manager.h"
86 #include "gromacs/gpu_utils/hostallocator.h"
87 #include "gromacs/math/gmxcomplex.h"
88 #include "gromacs/math/units.h"
89 #include "gromacs/math/vec.h"
90 #include "gromacs/mdtypes/commrec.h"
91 #include "gromacs/mdtypes/forceoutput.h"
92 #include "gromacs/mdtypes/inputrec.h"
93 #include "gromacs/mdtypes/simulation_workload.h"
94 #include "gromacs/mdtypes/state_propagator_data_gpu.h"
95 #include "gromacs/timing/cyclecounter.h"
96 #include "gromacs/timing/wallcycle.h"
97 #include "gromacs/utility/fatalerror.h"
98 #include "gromacs/utility/futil.h"
99 #include "gromacs/utility/gmxmpi.h"
100 #include "gromacs/utility/gmxomp.h"
101 #include "gromacs/utility/smalloc.h"
102
103 #include "pme_gpu_internal.h"
104 #include "pme_output.h"
105 #include "pme_pp_communication.h"
106
107 /*! \brief Master PP-PME communication data structure */
108 struct gmx_pme_pp
109 {
110     MPI_Comm             mpi_comm_mysim; /**< MPI communicator for this simulation */
111     std::vector<PpRanks> ppRanks;        /**< The PP partner ranks                 */
112     int                  peerRankId;     /**< The peer PP rank id                  */
113     //@{
114     /**< Vectors of A- and B-state parameters used to transfer vectors to PME ranks  */
115     gmx::PaddedHostVector<real> chargeA;
116     std::vector<real>           chargeB;
117     std::vector<real>           sqrt_c6A;
118     std::vector<real>           sqrt_c6B;
119     std::vector<real>           sigmaA;
120     std::vector<real>           sigmaB;
121     //@}
122     gmx::HostVector<gmx::RVec> x; /**< Vector of atom coordinates to transfer to PME ranks */
123     std::vector<gmx::RVec>     f; /**< Vector of atom forces received from PME ranks */
124     //@{
125     /**< Vectors of MPI objects used in non-blocking communication between multiple PP ranks per PME rank */
126     std::vector<MPI_Request> req;
127     std::vector<MPI_Status>  stat;
128     //@}
129
130     /*! \brief object for receiving coordinates using communications operating on GPU memory space */
131     std::unique_ptr<gmx::PmeCoordinateReceiverGpu> pmeCoordinateReceiverGpu;
132     /*! \brief object for sending PME force using communications operating on GPU memory space */
133     std::unique_ptr<gmx::PmeForceSenderGpu> pmeForceSenderGpu;
134
135     /*! \brief whether GPU direct communications are active for PME-PP transfers */
136     bool useGpuDirectComm = false;
137 };
138
139 /*! \brief Initialize the PME-only side of the PME <-> PP communication */
140 static std::unique_ptr<gmx_pme_pp> gmx_pme_pp_init(const t_commrec* cr)
141 {
142     auto pme_pp = std::make_unique<gmx_pme_pp>();
143
144 #if GMX_MPI
145     int rank;
146
147     pme_pp->mpi_comm_mysim = cr->mpi_comm_mysim;
148     MPI_Comm_rank(cr->mpi_comm_mygroup, &rank);
149     auto ppRanks = get_pme_ddranks(cr, rank);
150     pme_pp->ppRanks.reserve(ppRanks.size());
151     for (const auto& ppRankId : ppRanks)
152     {
153         pme_pp->ppRanks.push_back({ ppRankId, 0 });
154     }
155     // The peer PP rank is the last one.
156     pme_pp->peerRankId = pme_pp->ppRanks.back().rankId;
157     pme_pp->req.resize(eCommType_NR * pme_pp->ppRanks.size());
158     pme_pp->stat.resize(eCommType_NR * pme_pp->ppRanks.size());
159 #else
160     GMX_UNUSED_VALUE(cr);
161 #endif
162
163     return pme_pp;
164 }
165
166 static void reset_pmeonly_counters(gmx_wallcycle*            wcycle,
167                                    gmx_walltime_accounting_t walltime_accounting,
168                                    t_nrnb*                   nrnb,
169                                    int64_t                   step,
170                                    bool                      useGpuForPme)
171 {
172     /* Reset all the counters related to performance over the run */
173     wallcycle_stop(wcycle, WallCycleCounter::Run);
174     wallcycle_reset_all(wcycle);
175     *nrnb = { 0 };
176     wallcycle_start(wcycle, WallCycleCounter::Run);
177     walltime_accounting_reset_time(walltime_accounting, step);
178
179     if (useGpuForPme)
180     {
181         resetGpuProfiler();
182     }
183 }
184
185 static gmx_pme_t* gmx_pmeonly_switch(std::vector<gmx_pme_t*>* pmedata,
186                                      const ivec               grid_size,
187                                      real                     ewaldcoeff_q,
188                                      real                     ewaldcoeff_lj,
189                                      const t_commrec*         cr,
190                                      const t_inputrec*        ir)
191 {
192     GMX_ASSERT(pmedata, "Bad PME tuning list pointer");
193     for (auto& pme : *pmedata)
194     {
195         GMX_ASSERT(pme, "Bad PME tuning list element pointer");
196         if (gmx_pme_grid_matches(*pme, grid_size))
197         {
198             /* Here we have found an existing PME data structure that suits us.
199              * However, in the GPU case, we have to reinitialize it - there's only one GPU structure.
200              * This should not cause actual GPU reallocations, at least (the allocated buffers are never shrunk).
201              * So, just some grid size updates in the GPU kernel parameters.
202              * TODO: this should be something like gmx_pme_update_split_params()
203              */
204             gmx_pme_reinit(&pme, cr, pme, ir, grid_size, ewaldcoeff_q, ewaldcoeff_lj);
205             return pme;
206         }
207     }
208
209     const auto& pme          = pmedata->back();
210     gmx_pme_t*  newStructure = nullptr;
211     // Copy last structure with new grid params
212     gmx_pme_reinit(&newStructure, cr, pme, ir, grid_size, ewaldcoeff_q, ewaldcoeff_lj);
213     pmedata->push_back(newStructure);
214     return newStructure;
215 }
216
217 /*! \brief Called by PME-only ranks to receive coefficients and coordinates
218  *
219  * \param[in] pme                     PME data structure.
220  * \param[in,out] pme_pp              PME-PP communication structure.
221  * \param[out] natoms                 Number of received atoms.
222  * \param[out] box                    System box, if received.
223  * \param[out] maxshift_x             Maximum shift in X direction, if received.
224  * \param[out] maxshift_y             Maximum shift in Y direction, if received.
225  * \param[out] lambda_q               Free-energy lambda for electrostatics, if received.
226  * \param[out] lambda_lj              Free-energy lambda for Lennard-Jones, if received.
227  * \param[out] computeEnergyAndVirial Set to true if this is an energy/virial calculation
228  *                                    step, otherwise set to false.
229  * \param[out] step                   MD integration step number.
230  * \param[out] grid_size              PME grid size, if received.
231  * \param[out] ewaldcoeff_q           Ewald cut-off parameter for electrostatics, if received.
232  * \param[out] ewaldcoeff_lj          Ewald cut-off parameter for Lennard-Jones, if received.
233  * \param[in]  useGpuForPme           Flag on whether PME is on GPU.
234  * \param[in]  stateGpu               GPU state propagator object.
235  * \param[in]  runMode                PME run mode.
236  *
237  * \retval pmerecvqxX                 All parameters were set, chargeA and chargeB can be NULL.
238  * \retval pmerecvqxFINISH            No parameters were set.
239  * \retval pmerecvqxSWITCHGRID        Only grid_size and *ewaldcoeff were set.
240  * \retval pmerecvqxRESETCOUNTERS     *step was set.
241  */
242 static int gmx_pme_recv_coeffs_coords(struct gmx_pme_t*            pme,
243                                       gmx_pme_pp*                  pme_pp,
244                                       int*                         natoms,
245                                       matrix                       box,
246                                       int*                         maxshift_x,
247                                       int*                         maxshift_y,
248                                       real*                        lambda_q,
249                                       real*                        lambda_lj,
250                                       gmx_bool*                    computeEnergyAndVirial,
251                                       int64_t*                     step,
252                                       ivec*                        grid_size,
253                                       real*                        ewaldcoeff_q,
254                                       real*                        ewaldcoeff_lj,
255                                       bool                         useGpuForPme,
256                                       gmx::StatePropagatorDataGpu* stateGpu,
257                                       PmeRunMode gmx_unused runMode)
258 {
259     int status = -1;
260     int nat    = 0;
261
262 #if GMX_MPI
263     unsigned int flags          = 0;
264     int          messages       = 0;
265     bool         atomSetChanged = false;
266
267     do
268     {
269         gmx_pme_comm_n_box_t cnb;
270         cnb.flags = 0;
271
272         /* Receive the send count, box and time step from the peer PP node */
273         MPI_Recv(&cnb, sizeof(cnb), MPI_BYTE, pme_pp->peerRankId, eCommType_CNB, pme_pp->mpi_comm_mysim, MPI_STATUS_IGNORE);
274
275         /* We accumulate all received flags */
276         flags |= cnb.flags;
277
278         *step = cnb.step;
279
280         if (debug)
281         {
282             fprintf(debug,
283                     "PME only rank receiving:%s%s%s%s%s\n",
284                     (cnb.flags & PP_PME_CHARGE) ? " charges" : "",
285                     (cnb.flags & PP_PME_COORD) ? " coordinates" : "",
286                     (cnb.flags & PP_PME_FINISH) ? " finish" : "",
287                     (cnb.flags & PP_PME_SWITCHGRID) ? " switch grid" : "",
288                     (cnb.flags & PP_PME_RESETCOUNTERS) ? " reset counters" : "");
289         }
290
291         pme_pp->useGpuDirectComm = ((cnb.flags & PP_PME_GPUCOMMS) != 0);
292         GMX_ASSERT(!pme_pp->useGpuDirectComm || (pme_pp->pmeForceSenderGpu != nullptr),
293                    "The use of GPU direct communication for PME-PP is enabled, "
294                    "but the PME GPU force reciever object does not exist");
295
296         if (cnb.flags & PP_PME_FINISH)
297         {
298             status = pmerecvqxFINISH;
299         }
300
301         if (cnb.flags & PP_PME_SWITCHGRID)
302         {
303             /* Special case, receive the new parameters and return */
304             copy_ivec(cnb.grid_size, *grid_size);
305             *ewaldcoeff_q  = cnb.ewaldcoeff_q;
306             *ewaldcoeff_lj = cnb.ewaldcoeff_lj;
307
308             status = pmerecvqxSWITCHGRID;
309         }
310
311         if (cnb.flags & PP_PME_RESETCOUNTERS)
312         {
313             /* Special case, receive the step (set above) and return */
314             status = pmerecvqxRESETCOUNTERS;
315         }
316
317         if (cnb.flags & (PP_PME_CHARGE | PP_PME_SQRTC6 | PP_PME_SIGMA))
318         {
319             atomSetChanged = true;
320
321             /* Receive the send counts from the other PP nodes */
322             for (auto& sender : pme_pp->ppRanks)
323             {
324                 if (sender.rankId == pme_pp->peerRankId)
325                 {
326                     sender.numAtoms = cnb.natoms;
327                 }
328                 else
329                 {
330                     MPI_Irecv(&sender.numAtoms,
331                               sizeof(sender.numAtoms),
332                               MPI_BYTE,
333                               sender.rankId,
334                               eCommType_CNB,
335                               pme_pp->mpi_comm_mysim,
336                               &pme_pp->req[messages++]);
337                 }
338             }
339             MPI_Waitall(messages, pme_pp->req.data(), pme_pp->stat.data());
340             messages = 0;
341
342             nat = 0;
343             for (const auto& sender : pme_pp->ppRanks)
344             {
345                 nat += sender.numAtoms;
346             }
347
348             if (cnb.flags & PP_PME_CHARGE)
349             {
350                 pme_pp->chargeA.resizeWithPadding(nat);
351             }
352             if (cnb.flags & PP_PME_CHARGEB)
353             {
354                 pme_pp->chargeB.resize(nat);
355             }
356             if (cnb.flags & PP_PME_SQRTC6)
357             {
358                 pme_pp->sqrt_c6A.resize(nat);
359             }
360             if (cnb.flags & PP_PME_SQRTC6B)
361             {
362                 pme_pp->sqrt_c6B.resize(nat);
363             }
364             if (cnb.flags & PP_PME_SIGMA)
365             {
366                 pme_pp->sigmaA.resize(nat);
367             }
368             if (cnb.flags & PP_PME_SIGMAB)
369             {
370                 pme_pp->sigmaB.resize(nat);
371             }
372             pme_pp->x.resize(nat);
373             pme_pp->f.resize(nat);
374
375             /* maxshift is sent when the charges are sent */
376             *maxshift_x = cnb.maxshift_x;
377             *maxshift_y = cnb.maxshift_y;
378
379             /* Receive the charges in place */
380             for (int q = 0; q < eCommType_NR; q++)
381             {
382                 real* bufferPtr;
383
384                 if (!(cnb.flags & (PP_PME_CHARGE << q)))
385                 {
386                     continue;
387                 }
388                 switch (q)
389                 {
390                     case eCommType_ChargeA: bufferPtr = pme_pp->chargeA.data(); break;
391                     case eCommType_ChargeB: bufferPtr = pme_pp->chargeB.data(); break;
392                     case eCommType_SQRTC6A: bufferPtr = pme_pp->sqrt_c6A.data(); break;
393                     case eCommType_SQRTC6B: bufferPtr = pme_pp->sqrt_c6B.data(); break;
394                     case eCommType_SigmaA: bufferPtr = pme_pp->sigmaA.data(); break;
395                     case eCommType_SigmaB: bufferPtr = pme_pp->sigmaB.data(); break;
396                     default: gmx_incons("Wrong eCommType");
397                 }
398                 nat = 0;
399                 for (const auto& sender : pme_pp->ppRanks)
400                 {
401                     if (sender.numAtoms > 0)
402                     {
403                         MPI_Irecv(bufferPtr + nat,
404                                   sender.numAtoms * sizeof(real),
405                                   MPI_BYTE,
406                                   sender.rankId,
407                                   q,
408                                   pme_pp->mpi_comm_mysim,
409                                   &pme_pp->req[messages++]);
410                         nat += sender.numAtoms;
411                         if (debug)
412                         {
413                             fprintf(debug,
414                                     "Received from PP rank %d: %d %s\n",
415                                     sender.rankId,
416                                     sender.numAtoms,
417                                     (q == eCommType_ChargeA || q == eCommType_ChargeB) ? "charges"
418                                                                                        : "params");
419                         }
420                     }
421                 }
422             }
423         }
424
425         if (cnb.flags & PP_PME_COORD)
426         {
427             if (atomSetChanged)
428             {
429                 gmx_pme_reinit_atoms(pme, nat, pme_pp->chargeA.data(), pme_pp->chargeB.data());
430                 if (useGpuForPme)
431                 {
432                     stateGpu->reinit(nat, nat);
433                     pme_gpu_set_device_x(pme, stateGpu->getCoordinates());
434                 }
435                 if (pme_pp->useGpuDirectComm)
436                 {
437                     GMX_ASSERT(runMode == PmeRunMode::GPU,
438                                "GPU Direct PME-PP communication has been enabled, "
439                                "but PME run mode is not PmeRunMode::GPU\n");
440
441                     // This rank will have its data accessed directly by PP rank, so needs to send the remote addresses.
442                     pme_pp->pmeCoordinateReceiverGpu->sendCoordinateBufferAddressToPpRanks(
443                             stateGpu->getCoordinates());
444                     pme_pp->pmeForceSenderGpu->sendForceBufferAddressToPpRanks(pme_gpu_get_device_f(pme));
445                 }
446             }
447
448
449             /* The box, FE flag and lambda are sent along with the coordinates
450              *  */
451             copy_mat(cnb.box, box);
452             *lambda_q               = cnb.lambda_q;
453             *lambda_lj              = cnb.lambda_lj;
454             *computeEnergyAndVirial = ((cnb.flags & PP_PME_ENER_VIR) != 0U);
455             *step                   = cnb.step;
456
457             /* Receive the coordinates in place */
458             nat = 0;
459             for (const auto& sender : pme_pp->ppRanks)
460             {
461                 if (sender.numAtoms > 0)
462                 {
463                     if (pme_pp->useGpuDirectComm)
464                     {
465                         if (GMX_THREAD_MPI)
466                         {
467                             pme_pp->pmeCoordinateReceiverGpu->receiveCoordinatesSynchronizerFromPpCudaDirect(
468                                     sender.rankId);
469                         }
470                         else
471                         {
472                             pme_pp->pmeCoordinateReceiverGpu->launchReceiveCoordinatesFromPpCudaMpi(
473                                     stateGpu->getCoordinates(), nat, sender.numAtoms * sizeof(rvec), sender.rankId);
474                         }
475                     }
476                     else
477                     {
478                         MPI_Irecv(pme_pp->x[nat],
479                                   sender.numAtoms * sizeof(rvec),
480                                   MPI_BYTE,
481                                   sender.rankId,
482                                   eCommType_COORD,
483                                   pme_pp->mpi_comm_mysim,
484                                   &pme_pp->req[messages++]);
485                     }
486                     nat += sender.numAtoms;
487                     if (debug)
488                     {
489                         fprintf(debug,
490                                 "Received from PP rank %d: %d "
491                                 "coordinates\n",
492                                 sender.rankId,
493                                 sender.numAtoms);
494                     }
495                 }
496             }
497
498             if (pme_pp->useGpuDirectComm)
499             {
500                 pme_pp->pmeCoordinateReceiverGpu->synchronizeOnCoordinatesFromPpRanks();
501             }
502
503             status = pmerecvqxX;
504         }
505
506         /* Wait for the coordinates and/or charges to arrive */
507         MPI_Waitall(messages, pme_pp->req.data(), pme_pp->stat.data());
508         messages = 0;
509     } while (status == -1);
510 #else
511     GMX_UNUSED_VALUE(pme);
512     GMX_UNUSED_VALUE(pme_pp);
513     GMX_UNUSED_VALUE(box);
514     GMX_UNUSED_VALUE(maxshift_x);
515     GMX_UNUSED_VALUE(maxshift_y);
516     GMX_UNUSED_VALUE(lambda_q);
517     GMX_UNUSED_VALUE(lambda_lj);
518     GMX_UNUSED_VALUE(computeEnergyAndVirial);
519     GMX_UNUSED_VALUE(step);
520     GMX_UNUSED_VALUE(grid_size);
521     GMX_UNUSED_VALUE(ewaldcoeff_q);
522     GMX_UNUSED_VALUE(ewaldcoeff_lj);
523     GMX_UNUSED_VALUE(useGpuForPme);
524     GMX_UNUSED_VALUE(stateGpu);
525
526     status = pmerecvqxX;
527 #endif
528
529     if (status == pmerecvqxX)
530     {
531         *natoms = nat;
532     }
533
534     return status;
535 }
536
537 /*! \brief Send the PME mesh force, virial and energy to the PP-only ranks. */
538 static void gmx_pme_send_force_vir_ener(const gmx_pme_t& pme,
539                                         gmx_pme_pp*      pme_pp,
540                                         const PmeOutput& output,
541                                         real             dvdlambda_q,
542                                         real             dvdlambda_lj,
543                                         float            cycles)
544 {
545 #if GMX_MPI
546     gmx_pme_comm_vir_ene_t cve;
547     int                    messages, ind_start, ind_end;
548     cve.cycles = cycles;
549
550     /* Now the evaluated forces have to be transferred to the PP nodes */
551     messages = 0;
552     ind_end  = 0;
553     for (const auto& receiver : pme_pp->ppRanks)
554     {
555         ind_start = ind_end;
556         ind_end   = ind_start + receiver.numAtoms;
557         if (pme_pp->useGpuDirectComm)
558         {
559             GMX_ASSERT((pme_pp->pmeForceSenderGpu != nullptr),
560                        "The use of GPU direct communication for PME-PP is enabled, "
561                        "but the PME GPU force reciever object does not exist");
562
563             if (GMX_THREAD_MPI)
564             {
565                 pme_pp->pmeForceSenderGpu->sendFSynchronizerToPpCudaDirect(receiver.rankId);
566             }
567             else
568             {
569                 pme_pp->pmeForceSenderGpu->sendFToPpCudaMpi(pme_gpu_get_device_f(&pme),
570                                                             ind_start,
571                                                             receiver.numAtoms * sizeof(rvec),
572                                                             receiver.rankId,
573                                                             &pme_pp->req[messages]);
574
575                 messages++;
576             }
577         }
578         else
579         {
580             void* sendbuf = const_cast<void*>(static_cast<const void*>(output.forces_[ind_start]));
581             // Send using MPI
582             MPI_Isend(sendbuf,
583                       receiver.numAtoms * sizeof(rvec),
584                       MPI_BYTE,
585                       receiver.rankId,
586                       0,
587                       pme_pp->mpi_comm_mysim,
588                       &pme_pp->req[messages]);
589             messages++;
590         }
591     }
592
593     /* send virial and energy to our last PP node */
594     copy_mat(output.coulombVirial_, cve.vir_q);
595     copy_mat(output.lennardJonesVirial_, cve.vir_lj);
596     cve.energy_q     = output.coulombEnergy_;
597     cve.energy_lj    = output.lennardJonesEnergy_;
598     cve.dvdlambda_q  = dvdlambda_q;
599     cve.dvdlambda_lj = dvdlambda_lj;
600     /* check for the signals to send back to a PP node */
601     cve.stop_cond = gmx_get_stop_condition();
602
603     cve.cycles = cycles;
604
605     if (debug)
606     {
607         fprintf(debug, "PME rank sending to PP rank %d: virial and energy\n", pme_pp->peerRankId);
608     }
609     MPI_Isend(&cve, sizeof(cve), MPI_BYTE, pme_pp->peerRankId, 1, pme_pp->mpi_comm_mysim, &pme_pp->req[messages++]);
610
611     /* Wait for the forces to arrive */
612     MPI_Waitall(messages, pme_pp->req.data(), pme_pp->stat.data());
613 #else
614     GMX_RELEASE_ASSERT(false, "Invalid call to gmx_pme_send_force_vir_ener");
615     GMX_UNUSED_VALUE(pme);
616     GMX_UNUSED_VALUE(pme_pp);
617     GMX_UNUSED_VALUE(output);
618     GMX_UNUSED_VALUE(dvdlambda_q);
619     GMX_UNUSED_VALUE(dvdlambda_lj);
620     GMX_UNUSED_VALUE(cycles);
621 #endif
622 }
623
624 int gmx_pmeonly(struct gmx_pme_t*               pme,
625                 const t_commrec*                cr,
626                 t_nrnb*                         mynrnb,
627                 gmx_wallcycle*                  wcycle,
628                 gmx_walltime_accounting_t       walltime_accounting,
629                 t_inputrec*                     ir,
630                 PmeRunMode                      runMode,
631                 bool                            useGpuPmePpCommunication,
632                 const gmx::DeviceStreamManager* deviceStreamManager)
633 {
634     int     ret;
635     int     natoms = 0;
636     matrix  box;
637     real    lambda_q   = 0;
638     real    lambda_lj  = 0;
639     int     maxshift_x = 0, maxshift_y = 0;
640     real    dvdlambda_q, dvdlambda_lj;
641     float   cycles;
642     int     count;
643     bool    computeEnergyAndVirial = false;
644     int64_t step;
645
646     /* This data will only use with PME tuning, i.e. switching PME grids */
647     std::vector<gmx_pme_t*> pmedata;
648     pmedata.push_back(pme);
649
650     auto pme_pp = gmx_pme_pp_init(cr);
651
652     std::unique_ptr<gmx::StatePropagatorDataGpu> stateGpu;
653     // TODO the variable below should be queried from the task assignment info
654     const bool useGpuForPme = (runMode == PmeRunMode::GPU) || (runMode == PmeRunMode::Mixed);
655     if (useGpuForPme)
656     {
657         GMX_RELEASE_ASSERT(
658                 deviceStreamManager != nullptr,
659                 "Device stream manager can not be nullptr when using GPU in PME-only rank.");
660         GMX_RELEASE_ASSERT(deviceStreamManager->streamIsValid(gmx::DeviceStreamType::Pme),
661                            "Device stream can not be nullptr when using GPU in PME-only rank");
662         changePinningPolicy(&pme_pp->chargeA, pme_get_pinning_policy());
663         changePinningPolicy(&pme_pp->x, pme_get_pinning_policy());
664         if (useGpuPmePpCommunication)
665         {
666             pme_pp->pmeCoordinateReceiverGpu = std::make_unique<gmx::PmeCoordinateReceiverGpu>(
667                     deviceStreamManager->stream(gmx::DeviceStreamType::Pme),
668                     pme_pp->mpi_comm_mysim,
669                     pme_pp->ppRanks);
670             pme_pp->pmeForceSenderGpu = std::make_unique<gmx::PmeForceSenderGpu>(
671                     pme_gpu_get_f_ready_synchronizer(pme), pme_pp->mpi_comm_mysim, pme_pp->ppRanks);
672         }
673         // TODO: Special PME-only constructor is used here. There is no mechanism to prevent from using the other constructor here.
674         //       This should be made safer.
675         stateGpu = std::make_unique<gmx::StatePropagatorDataGpu>(
676                 &deviceStreamManager->stream(gmx::DeviceStreamType::Pme),
677                 deviceStreamManager->context(),
678                 GpuApiCallBehavior::Async,
679                 pme_gpu_get_block_size(pme),
680                 wcycle);
681     }
682
683     clear_nrnb(mynrnb);
684
685     count = 0;
686     do /****** this is a quasi-loop over time steps! */
687     {
688         /* The reason for having a loop here is PME grid tuning/switching */
689         do
690         {
691             /* Domain decomposition */
692             ivec newGridSize;
693             real ewaldcoeff_q = 0, ewaldcoeff_lj = 0;
694             ret = gmx_pme_recv_coeffs_coords(pme,
695                                              pme_pp.get(),
696                                              &natoms,
697                                              box,
698                                              &maxshift_x,
699                                              &maxshift_y,
700                                              &lambda_q,
701                                              &lambda_lj,
702                                              &computeEnergyAndVirial,
703                                              &step,
704                                              &newGridSize,
705                                              &ewaldcoeff_q,
706                                              &ewaldcoeff_lj,
707                                              useGpuForPme,
708                                              stateGpu.get(),
709                                              runMode);
710
711             if (ret == pmerecvqxSWITCHGRID)
712             {
713                 /* Switch the PME grid to newGridSize */
714                 pme = gmx_pmeonly_switch(&pmedata, newGridSize, ewaldcoeff_q, ewaldcoeff_lj, cr, ir);
715             }
716
717             if (ret == pmerecvqxRESETCOUNTERS)
718             {
719                 /* Reset the cycle and flop counters */
720                 reset_pmeonly_counters(wcycle, walltime_accounting, mynrnb, step, useGpuForPme);
721             }
722         } while (ret == pmerecvqxSWITCHGRID || ret == pmerecvqxRESETCOUNTERS);
723
724         if (ret == pmerecvqxFINISH)
725         {
726             /* We should stop: break out of the loop */
727             break;
728         }
729
730         if (count == 0)
731         {
732             wallcycle_start(wcycle, WallCycleCounter::Run);
733             walltime_accounting_start_time(walltime_accounting);
734         }
735
736         wallcycle_start(wcycle, WallCycleCounter::PmeMesh);
737
738         dvdlambda_q  = 0;
739         dvdlambda_lj = 0;
740
741         // TODO Make a struct of array refs onto these per-atom fields
742         // of pme_pp (maybe box, energy and virial, too; and likewise
743         // from mdatoms for the other call to gmx_pme_do), so we have
744         // fewer lines of code and less parameter passing.
745         gmx::StepWorkload stepWork;
746         stepWork.computeVirial = computeEnergyAndVirial;
747         stepWork.computeEnergy = computeEnergyAndVirial;
748         stepWork.computeForces = true;
749         PmeOutput output       = { {}, false, 0, { { 0 } }, 0, 0, { { 0 } }, 0 };
750         if (useGpuForPme)
751         {
752             stepWork.haveDynamicBox      = false;
753             stepWork.useGpuPmeFReduction = pme_pp->useGpuDirectComm;
754             // TODO this should be set properly by gmx_pme_recv_coeffs_coords,
755             // or maybe use inputrecDynamicBox(ir), at the very least - change this when this codepath is tested!
756             pme_gpu_prepare_computation(pme, box, wcycle, stepWork);
757             if (!pme_pp->useGpuDirectComm)
758             {
759                 stateGpu->copyCoordinatesToGpu(gmx::ArrayRef<gmx::RVec>(pme_pp->x), gmx::AtomLocality::All);
760             }
761             // On the separate PME rank we do not need a synchronizer as we schedule everything in a single stream
762             // TODO: with pme on GPU the receive should make a list of synchronizers and pass it here #3157
763             auto xReadyOnDevice = nullptr;
764
765             pme_gpu_launch_spread(pme, xReadyOnDevice, wcycle, lambda_q);
766             pme_gpu_launch_complex_transforms(pme, wcycle, stepWork);
767             pme_gpu_launch_gather(pme, wcycle, lambda_q);
768             output = pme_gpu_wait_finish_task(pme, computeEnergyAndVirial, lambda_q, wcycle);
769             pme_gpu_reinit_computation(pme, wcycle);
770         }
771         else
772         {
773             GMX_ASSERT(pme_pp->x.size() == static_cast<size_t>(natoms),
774                        "The coordinate buffer should have size natoms");
775
776             gmx_pme_do(pme,
777                        pme_pp->x,
778                        pme_pp->f,
779                        pme_pp->chargeA,
780                        pme_pp->chargeB,
781                        pme_pp->sqrt_c6A,
782                        pme_pp->sqrt_c6B,
783                        pme_pp->sigmaA,
784                        pme_pp->sigmaB,
785                        box,
786                        cr,
787                        maxshift_x,
788                        maxshift_y,
789                        mynrnb,
790                        wcycle,
791                        output.coulombVirial_,
792                        output.lennardJonesVirial_,
793                        &output.coulombEnergy_,
794                        &output.lennardJonesEnergy_,
795                        lambda_q,
796                        lambda_lj,
797                        &dvdlambda_q,
798                        &dvdlambda_lj,
799                        stepWork);
800             output.forces_ = pme_pp->f;
801         }
802
803         cycles = wallcycle_stop(wcycle, WallCycleCounter::PmeMesh);
804         gmx_pme_send_force_vir_ener(*pme, pme_pp.get(), output, dvdlambda_q, dvdlambda_lj, cycles);
805
806         count++;
807     } /***** end of quasi-loop, we stop with the break above */
808     while (TRUE);
809
810     walltime_accounting_end_time(walltime_accounting);
811
812     return 0;
813 }