0eebc6c0e4d3868e605a010b95e7792a4fcbdfd4
[alexxy/gromacs.git] / src / gromacs / domdec / gpuhaloexchange_impl.cu
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2019,2020, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  *
37  * \brief Implements GPU halo exchange using CUDA.
38  *
39  *
40  * \author Alan Gray <alang@nvidia.com>
41  *
42  * \ingroup module_domdec
43  */
44 #include "gmxpre.h"
45
46 #include "gpuhaloexchange_impl.cuh"
47
48 #include "config.h"
49
50 #include <assert.h>
51 #include <stdio.h>
52
53 #include "gromacs/domdec/domdec.h"
54 #include "gromacs/domdec/domdec_struct.h"
55 #include "gromacs/domdec/gpuhaloexchange.h"
56 #include "gromacs/gpu_utils/cudautils.cuh"
57 #include "gromacs/gpu_utils/device_context.h"
58 #include "gromacs/gpu_utils/devicebuffer.h"
59 #include "gromacs/gpu_utils/gpueventsynchronizer.cuh"
60 #include "gromacs/gpu_utils/typecasts.cuh"
61 #include "gromacs/gpu_utils/vectype_ops.cuh"
62 #include "gromacs/math/vectypes.h"
63 #include "gromacs/pbcutil/ishift.h"
64 #include "gromacs/utility/gmxmpi.h"
65
66 #include "domdec_internal.h"
67
68 namespace gmx
69 {
70
71 //! Number of CUDA threads in a block
72 // TODO Optimize this through experimentation
73 constexpr static int c_threadsPerBlock = 256;
74
75 template<bool usePBC>
76 __global__ void packSendBufKernel(float3* __restrict__ dataPacked,
77                                   const float3* __restrict__ data,
78                                   const int* __restrict__ map,
79                                   const int    mapSize,
80                                   const float3 coordinateShift)
81 {
82     int           threadIndex = blockIdx.x * blockDim.x + threadIdx.x;
83     float3*       gm_dataDest = &dataPacked[threadIndex];
84     const float3* gm_dataSrc  = &data[map[threadIndex]];
85
86     if (threadIndex < mapSize)
87     {
88         if (usePBC)
89         {
90             *gm_dataDest = *gm_dataSrc + coordinateShift;
91         }
92         else
93         {
94             *gm_dataDest = *gm_dataSrc;
95         }
96     }
97
98     return;
99 }
100
101 /*! \brief unpack non-local force data buffer on the GPU using pre-populated "map" containing index
102  * information \param[out] data        full array of force values \param[in]  dataPacked  packed
103  * array of force values to be transferred \param[in]  map         array of indices defining mapping
104  * from full to packed array \param[in]  mapSize     number of elements in map array
105  */
106 template<bool accumulate>
107 __global__ void unpackRecvBufKernel(float3* __restrict__ data,
108                                     const float3* __restrict__ dataPacked,
109                                     const int* __restrict__ map,
110                                     const int mapSize)
111 {
112
113     int           threadIndex = blockIdx.x * blockDim.x + threadIdx.x;
114     const float3* gm_dataSrc  = &dataPacked[threadIndex];
115     float3*       gm_dataDest = &data[map[threadIndex]];
116
117     if (threadIndex < mapSize)
118     {
119         if (accumulate)
120         {
121             *gm_dataDest += *gm_dataSrc;
122         }
123         else
124         {
125             *gm_dataDest = *gm_dataSrc;
126         }
127     }
128
129     return;
130 }
131
132 void GpuHaloExchange::Impl::reinitHalo(float3* d_coordinatesBuffer, float3* d_forcesBuffer)
133 {
134
135     d_x_ = d_coordinatesBuffer;
136     d_f_ = d_forcesBuffer;
137
138     const gmx_domdec_comm_t&     comm    = *dd_->comm;
139     const gmx_domdec_comm_dim_t& cd      = comm.cd[0];
140     const gmx_domdec_ind_t&      ind     = cd.ind[pulse_];
141     int                          newSize = ind.nsend[nzone_ + 1];
142
143     GMX_ASSERT(cd.receiveInPlace, "Out-of-place receive is not yet supported in GPU halo exchange");
144
145     // reallocates only if needed
146     h_indexMap_.resize(newSize);
147     // reallocate on device only if needed
148     if (newSize > maxPackedBufferSize_)
149     {
150         reallocateDeviceBuffer(&d_indexMap_, newSize, &indexMapSize_, &indexMapSizeAlloc_, deviceContext_);
151         reallocateDeviceBuffer(&d_sendBuf_, newSize, &sendBufSize_, &sendBufSizeAlloc_, deviceContext_);
152         reallocateDeviceBuffer(&d_recvBuf_, newSize, &recvBufSize_, &recvBufSizeAlloc_, deviceContext_);
153         maxPackedBufferSize_ = newSize;
154     }
155
156     xSendSize_ = newSize;
157 #if GMX_MPI
158     MPI_Sendrecv(&xSendSize_, sizeof(int), MPI_BYTE, sendRankX_, 0, &xRecvSize_, sizeof(int),
159                  MPI_BYTE, recvRankX_, 0, mpi_comm_mysim_, MPI_STATUS_IGNORE);
160 #endif
161     fSendSize_ = xRecvSize_;
162     fRecvSize_ = xSendSize_;
163
164     numHomeAtoms_ = comm.atomRanges.numHomeAtoms(); // offset for data recieved by this rank
165
166     GMX_ASSERT(ind.index.size() == h_indexMap_.size(), "Size mismatch");
167     std::copy(ind.index.begin(), ind.index.end(), h_indexMap_.begin());
168
169     copyToDeviceBuffer(&d_indexMap_, h_indexMap_.data(), 0, newSize, nonLocalStream_,
170                        GpuApiCallBehavior::Async, nullptr);
171
172     // This rank will push data to its neighbor, so needs to know
173     // the remote receive address and similarly send its receive
174     // address to other neighbour. We can do this here in reinit fn
175     // since the pointers will not change until the next NS step.
176
177     // Coordinates buffer:
178 #if GMX_MPI
179     int pulseOffset = 0;
180     for (int p = pulse_ - 1; p >= 0; p--)
181     {
182         pulseOffset += cd.ind[p].nrecv[nzone_ + 1];
183     }
184     //    void* recvPtr = static_cast<void*>(&d_coordinatesBuffer[numHomeAtoms_ + pulseOffset]);
185     void* recvPtr = static_cast<void*>(&d_x_[numHomeAtoms_ + pulseOffset]);
186     MPI_Sendrecv(&recvPtr, sizeof(void*), MPI_BYTE, recvRankX_, 0, &remoteXPtr_, sizeof(void*),
187                  MPI_BYTE, sendRankX_, 0, mpi_comm_mysim_, MPI_STATUS_IGNORE);
188
189     // Force buffer:
190     recvPtr = static_cast<void*>(d_recvBuf_);
191     MPI_Sendrecv(&recvPtr, sizeof(void*), MPI_BYTE, recvRankF_, 0, &remoteFPtr_, sizeof(void*),
192                  MPI_BYTE, sendRankF_, 0, mpi_comm_mysim_, MPI_STATUS_IGNORE);
193 #endif
194
195     return;
196 }
197
198 void GpuHaloExchange::Impl::communicateHaloCoordinates(const matrix          box,
199                                                        GpuEventSynchronizer* coordinatesReadyOnDeviceEvent)
200 {
201
202     if (pulse_ == 0)
203     {
204         // ensure stream waits until coordinate data is available on device
205         coordinatesReadyOnDeviceEvent->enqueueWaitEvent(nonLocalStream_);
206     }
207
208     // launch kernel to pack send buffer
209     KernelLaunchConfig config;
210     config.blockSize[0]     = c_threadsPerBlock;
211     config.blockSize[1]     = 1;
212     config.blockSize[2]     = 1;
213     config.gridSize[0]      = (xSendSize_ + c_threadsPerBlock - 1) / c_threadsPerBlock;
214     config.gridSize[1]      = 1;
215     config.gridSize[2]      = 1;
216     config.sharedMemorySize = 0;
217
218     const float3* sendBuf  = d_sendBuf_;
219     const float3* d_x      = d_x_;
220     const int*    indexMap = d_indexMap_;
221     const int     size     = xSendSize_;
222     // The coordinateShift changes between steps when we have
223     // performed a DD partition, or have updated the box e.g. when
224     // performing pressure coupling. So, for simplicity, the box
225     // is used every step to pass the shift vector as an argument of
226     // the packing kernel.
227     //
228     // Because only one-dimensional DD is supported, the coordinate
229     // shift only needs to handle that dimension.
230     const int    dimensionIndex = dd_->dim[0];
231     const float3 coordinateShift{ box[dimensionIndex][XX], box[dimensionIndex][YY],
232                                   box[dimensionIndex][ZZ] };
233
234     // Avoid launching kernel when there is no work to do
235     if (size > 0)
236     {
237         auto kernelFn = usePBC_ ? packSendBufKernel<true> : packSendBufKernel<false>;
238
239         const auto kernelArgs = prepareGpuKernelArguments(kernelFn, config, &sendBuf, &d_x,
240                                                           &indexMap, &size, &coordinateShift);
241
242         launchGpuKernel(kernelFn, config, nonLocalStream_, nullptr,
243                         "Domdec GPU Apply X Halo Exchange", kernelArgs);
244     }
245
246     communicateHaloData(d_x_, HaloQuantity::HaloCoordinates, coordinatesReadyOnDeviceEvent);
247
248     return;
249 }
250
251 // The following method should be called after non-local buffer operations,
252 // and before the local buffer operations. It operates in the non-local stream.
253 void GpuHaloExchange::Impl::communicateHaloForces(bool accumulateForces)
254 {
255
256     // Communicate halo data (in non-local stream)
257     communicateHaloData(d_f_, HaloQuantity::HaloForces, nullptr);
258
259     float3* d_f = d_f_;
260
261     if (pulse_ == (dd_->comm->cd[0].numPulses() - 1))
262     {
263         if (!accumulateForces)
264         {
265             // Clear local portion of force array (in local stream)
266             cudaMemsetAsync(d_f, 0, numHomeAtoms_ * sizeof(rvec), localStream_.stream());
267         }
268
269         // ensure non-local stream waits for local stream, due to dependence on
270         // the previous H2D copy of CPU forces (if accumulateForces is true)
271         // or the above clearing.
272         // TODO remove this dependency on localStream - edmine Issue #3093
273         GpuEventSynchronizer eventLocal;
274         eventLocal.markEvent(localStream_);
275         eventLocal.enqueueWaitEvent(nonLocalStream_);
276     }
277
278     // Unpack halo buffer into force array
279
280     KernelLaunchConfig config;
281     config.blockSize[0]     = c_threadsPerBlock;
282     config.blockSize[1]     = 1;
283     config.blockSize[2]     = 1;
284     config.gridSize[0]      = (fRecvSize_ + c_threadsPerBlock - 1) / c_threadsPerBlock;
285     config.gridSize[1]      = 1;
286     config.gridSize[2]      = 1;
287     config.sharedMemorySize = 0;
288
289     const float3* recvBuf  = d_recvBuf_;
290     const int*    indexMap = d_indexMap_;
291     const int     size     = fRecvSize_;
292
293     if (pulse_ > 0)
294     {
295         // We need to accumulate rather than set, since it is possible
296         // that, in this pulse, a value could be written to a location
297         // corresponding to the halo region of a following pulse.
298         accumulateForces = true;
299     }
300
301     if (size > 0)
302     {
303         auto kernelFn = accumulateForces ? unpackRecvBufKernel<true> : unpackRecvBufKernel<false>;
304
305         const auto kernelArgs =
306                 prepareGpuKernelArguments(kernelFn, config, &d_f, &recvBuf, &indexMap, &size);
307
308         launchGpuKernel(kernelFn, config, nonLocalStream_, nullptr,
309                         "Domdec GPU Apply F Halo Exchange", kernelArgs);
310     }
311
312     if (pulse_ == 0)
313     {
314         fReadyOnDevice_.markEvent(nonLocalStream_);
315     }
316 }
317
318
319 void GpuHaloExchange::Impl::communicateHaloData(float3*               d_ptr,
320                                                 HaloQuantity          haloQuantity,
321                                                 GpuEventSynchronizer* coordinatesReadyOnDeviceEvent)
322 {
323
324     void* sendPtr;
325     int   sendSize;
326     void* remotePtr;
327     int   sendRank;
328     int   recvRank;
329
330     if (haloQuantity == HaloQuantity::HaloCoordinates)
331     {
332         sendPtr   = static_cast<void*>(d_sendBuf_);
333         sendSize  = xSendSize_;
334         remotePtr = remoteXPtr_;
335         sendRank  = sendRankX_;
336         recvRank  = recvRankX_;
337
338 #if GMX_MPI
339         // Wait for event from receiving task that remote coordinates are ready, and enqueue that event to stream used
340         // for subsequent data push. This avoids a race condition with the remote data being written in the previous timestep.
341         // Similarly send event to task that will push data to this task.
342         GpuEventSynchronizer* remoteCoordinatesReadyOnDeviceEvent;
343         MPI_Sendrecv(&coordinatesReadyOnDeviceEvent, sizeof(GpuEventSynchronizer*), MPI_BYTE,
344                      recvRank, 0, &remoteCoordinatesReadyOnDeviceEvent, sizeof(GpuEventSynchronizer*),
345                      MPI_BYTE, sendRank, 0, mpi_comm_mysim_, MPI_STATUS_IGNORE);
346         remoteCoordinatesReadyOnDeviceEvent->enqueueWaitEvent(nonLocalStream_);
347 #else
348         GMX_UNUSED_VALUE(coordinatesReadyOnDeviceEvent);
349 #endif
350     }
351     else
352     {
353         int recvOffset = dd_->comm->atomRanges.end(DDAtomRanges::Type::Zones);
354         for (int p = pulse_; p < dd_->comm->cd[0].numPulses(); p++)
355         {
356             recvOffset -= dd_->comm->cd[0].ind[p].nrecv[nzone_ + 1];
357         }
358         sendPtr   = static_cast<void*>(&(d_ptr[recvOffset]));
359         sendSize  = fSendSize_;
360         remotePtr = remoteFPtr_;
361         sendRank  = sendRankF_;
362         recvRank  = recvRankF_;
363     }
364
365     communicateHaloDataWithCudaDirect(sendPtr, sendSize, sendRank, remotePtr, recvRank);
366 }
367
368 void GpuHaloExchange::Impl::communicateHaloDataWithCudaDirect(void* sendPtr,
369                                                               int   sendSize,
370                                                               int   sendRank,
371                                                               void* remotePtr,
372                                                               int   recvRank)
373 {
374
375     cudaError_t stat;
376
377     // We asynchronously push data to remote rank. The remote
378     // destination pointer has already been set in the init fn.  We
379     // don't need to worry about overwriting data the remote ranks
380     // still needs since the halo exchange is just done once per
381     // timestep, for each of X and F.
382
383     // send data to neighbor, if any data exists to send
384     if (sendSize > 0)
385     {
386         stat = cudaMemcpyAsync(remotePtr, sendPtr, sendSize * DIM * sizeof(float),
387                                cudaMemcpyDeviceToDevice, nonLocalStream_.stream());
388         CU_RET_ERR(stat, "cudaMemcpyAsync on GPU Domdec CUDA direct data transfer failed");
389     }
390
391 #if GMX_MPI
392     // ensure pushed data has arrived before remote rank progresses
393     // This rank records an event and sends it to the remote rank which has just been pushed data.
394     // This rank recieves event from remote rank which has pushed data here, and enqueues that event
395     // to its stream.
396     GpuEventSynchronizer* haloDataTransferRemote;
397
398     haloDataTransferLaunched_->markEvent(nonLocalStream_);
399
400     MPI_Sendrecv(&haloDataTransferLaunched_, sizeof(GpuEventSynchronizer*), MPI_BYTE, sendRank, 0,
401                  &haloDataTransferRemote, sizeof(GpuEventSynchronizer*), MPI_BYTE, recvRank, 0,
402                  mpi_comm_mysim_, MPI_STATUS_IGNORE);
403
404     haloDataTransferRemote->enqueueWaitEvent(nonLocalStream_);
405 #else
406     GMX_UNUSED_VALUE(sendRank);
407     GMX_UNUSED_VALUE(recvRank);
408 #endif
409 }
410
411 GpuEventSynchronizer* GpuHaloExchange::Impl::getForcesReadyOnDeviceEvent()
412 {
413     return &fReadyOnDevice_;
414 }
415
416 /*! \brief Create Domdec GPU object */
417 GpuHaloExchange::Impl::Impl(gmx_domdec_t*        dd,
418                             MPI_Comm             mpi_comm_mysim,
419                             const DeviceContext& deviceContext,
420                             const DeviceStream&  localStream,
421                             const DeviceStream&  nonLocalStream,
422                             int                  pulse) :
423     dd_(dd),
424     sendRankX_(dd->neighbor[0][1]),
425     recvRankX_(dd->neighbor[0][0]),
426     sendRankF_(dd->neighbor[0][0]),
427     recvRankF_(dd->neighbor[0][1]),
428     usePBC_(dd->ci[dd->dim[0]] == 0),
429     haloDataTransferLaunched_(new GpuEventSynchronizer()),
430     mpi_comm_mysim_(mpi_comm_mysim),
431     deviceContext_(deviceContext),
432     localStream_(localStream),
433     nonLocalStream_(nonLocalStream),
434     pulse_(pulse)
435 {
436
437     GMX_RELEASE_ASSERT(GMX_THREAD_MPI,
438                        "GPU Halo exchange is currently only supported with thread-MPI enabled");
439
440     if (dd->ndim > 1)
441     {
442         gmx_fatal(FARGS, "Error: dd->ndim > 1 is not yet supported in GPU halo exchange");
443     }
444
445     if (usePBC_ && dd->unitCellInfo.haveScrewPBC)
446     {
447         gmx_fatal(FARGS, "Error: screw is not yet supported in GPU halo exchange\n");
448     }
449
450     changePinningPolicy(&h_indexMap_, gmx::PinningPolicy::PinnedIfSupported);
451
452     allocateDeviceBuffer(&d_fShift_, 1, deviceContext_);
453 }
454
455 GpuHaloExchange::Impl::~Impl()
456 {
457     freeDeviceBuffer(&d_indexMap_);
458     freeDeviceBuffer(&d_sendBuf_);
459     freeDeviceBuffer(&d_recvBuf_);
460     freeDeviceBuffer(&d_fShift_);
461     delete haloDataTransferLaunched_;
462 }
463
464 GpuHaloExchange::GpuHaloExchange(gmx_domdec_t*        dd,
465                                  MPI_Comm             mpi_comm_mysim,
466                                  const DeviceContext& deviceContext,
467                                  const DeviceStream&  localStream,
468                                  const DeviceStream&  nonLocalStream,
469                                  int                  pulse) :
470     impl_(new Impl(dd, mpi_comm_mysim, deviceContext, localStream, nonLocalStream, pulse))
471 {
472 }
473
474 GpuHaloExchange::~GpuHaloExchange() = default;
475
476 void GpuHaloExchange::reinitHalo(DeviceBuffer<RVec> d_coordinatesBuffer, DeviceBuffer<RVec> d_forcesBuffer)
477 {
478     impl_->reinitHalo(asFloat3(d_coordinatesBuffer), asFloat3(d_forcesBuffer));
479 }
480
481 void GpuHaloExchange::communicateHaloCoordinates(const matrix          box,
482                                                  GpuEventSynchronizer* coordinatesReadyOnDeviceEvent)
483 {
484     impl_->communicateHaloCoordinates(box, coordinatesReadyOnDeviceEvent);
485 }
486
487 void GpuHaloExchange::communicateHaloForces(bool accumulateForces)
488 {
489     impl_->communicateHaloForces(accumulateForces);
490 }
491
492 GpuEventSynchronizer* GpuHaloExchange::getForcesReadyOnDeviceEvent()
493 {
494     return impl_->getForcesReadyOnDeviceEvent();
495 }
496 } // namespace gmx