Centralize management of coordinates ready on GPU event
[alexxy/gromacs.git] / src / gromacs / mdtypes / state_propagator_data_gpu.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2019, 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 Declaration of interfaces for GPU state data propagator object.
38  *
39  * This object stores and manages positions, velocities and forces for
40  * all particles in the system on the GPU.
41  *
42  * \todo Add cycle counters.
43  * \todo Add synchronization points.
44  *
45  * \author Artem Zhmurov <zhmurov@gmail.com>
46  *
47  * \inlibraryapi
48  * \ingroup module_mdtypes
49  */
50 #ifndef GMX_MDTYPES_STATE_PROPAGATOR_DATA_GPU_H
51 #define GMX_MDTYPES_STATE_PROPAGATOR_DATA_GPU_H
52
53 #include "gromacs/gpu_utils/devicebuffer_datatype.h"
54 #include "gromacs/gpu_utils/gpu_utils.h"
55 #include "gromacs/math/vectypes.h"
56 #include "gromacs/mdtypes/simulation_workload.h"
57 #include "gromacs/utility/arrayref.h"
58 #include "gromacs/utility/classhelpers.h"
59
60 class GpuEventSynchronizer;
61
62 namespace gmx
63 {
64
65 class StatePropagatorDataGpu
66 {
67     public:
68
69         /*! \brief Atom locality indicator: local, non-local, all.
70          *
71          * \todo This should be managed by a separate object, since the localities
72          *       are used here and in buffer ops.
73          */
74         enum class AtomLocality : int
75         {
76             Local    = 0, //!< Local atoms
77             NonLocal = 1, //!< Non-local atoms
78             All      = 2, //!< Both local and non-local atoms
79             Count    = 3  //!< The number of atom locality types
80         };
81
82         /*! \brief Constructor
83          *
84          * The buffers are reallocated only at the reinit call, the padding is
85          * used there for the coordinates buffer. It is needed for PME and added at
86          * the end of the buffer. It is assumed that if the rank has PME duties on the
87          * GPU, all coordinates are copied to the GPU and hence, for this rank, the
88          * coordinates buffer is not split into local and non-local ranges. For other
89          * ranks, the padding size is zero. This works because only one rank ever does
90          * PME work on the GPU, and if that rank also does PP work that is the only
91          * rank. So all coordinates are always transferred.
92          *
93          * In OpenCL, only pmeStream is used since it is the only stream created in
94          * PME context. The local and non-local streams are only needed when buffer
95          * ops are offloaded. This feature is currently not available in OpenCL and
96          * hence these streams are not set in these builds.
97          *
98          * \note In CUDA, the update stream is created in the constructor as a temporary
99          *       solution, in place until the stream manager is introduced.
100          *       Note that this makes it impossible to construct this object in CUDA
101          *       builds executing on a host without any CUDA-capable device available.
102          *
103          * \note In CUDA, \p deviceContext is unused, hence always nullptr;
104          *       all stream arguments can also be nullptr in runs where the
105          *       respective streams are not required.
106          *       In OpenCL, \p deviceContext needs to be a valid device context.
107          *       In OpenCL runs StatePropagatorDataGpu is currently only used
108          *       with PME offload, and only on ranks with PME duty. Hence, the
109          *       \p pmeStream argument needs to be a valid OpenCL queue object
110          *       which must have been created in \p deviceContext.
111          *
112          * \todo Make a \p CommandStream visible in the CPU parts of the code so we
113          *       will not have to pass a void*.
114          * \todo Make a \p DeviceContext object visible in CPU parts of the code so we
115          *       will not have to pass a void*.
116          *
117          *  \param[in] pmeStream       Device PME stream, nullptr allowed.
118          *  \param[in] localStream     Device NBNXM local stream, nullptr allowed.
119          *  \param[in] nonLocalStream  Device NBNXM non-local stream, nullptr allowed.
120          *  \param[in] deviceContext   Device context, nullptr allowed.
121          *  \param[in] transferKind    H2D/D2H transfer call behavior (synchronous or not).
122          *  \param[in] paddingSize     Padding size for coordinates buffer.
123          */
124         StatePropagatorDataGpu(const void        *pmeStream,
125                                const void        *localStream,
126                                const void        *nonLocalStream,
127                                const void        *deviceContext,
128                                GpuApiCallBehavior transferKind,
129                                int                paddingSize);
130         //! Move constructor
131         StatePropagatorDataGpu(StatePropagatorDataGpu &&other) noexcept;
132         //! Move assignment
133         StatePropagatorDataGpu &operator=(StatePropagatorDataGpu &&other) noexcept;
134         //! Destructor
135         ~StatePropagatorDataGpu();
136
137         /*! \brief Set the ranges for local and non-local atoms and reallocates buffers.
138          *
139          * \note
140          * The coordinates buffer is (re)allocated, when required by PME, with a padding,
141          * the size of which is set by the constructor. The padding region clearing kernel
142          * is scheduled in the \p pmeStream_ (unlike the coordinates H2D) as only the PME
143          * task uses this padding area.
144          *
145          *  \param[in] numAtomsLocal  Number of atoms in local domain.
146          *  \param[in] numAtomsAll    Total number of atoms to handle.
147          */
148         void reinit(int numAtomsLocal, int numAtomsAll);
149
150         /*! \brief Returns the range of atoms to be copied based on the copy type (all, local or non-local).
151          *
152          * \todo There are at least three versions of the function with this functionality in the code:
153          *       this one and two more in NBNXM. These should be unified in a shape of a general function
154          *       in DD.
155          *
156          * \param[in]  atomLocality    If all, local or non-local ranges are needed.
157          *
158          * \returns Tuple, containing the index of the first atom in the range and the total number of atoms in the range.
159          */
160         std::tuple<int, int> getAtomRangesFromAtomLocality(AtomLocality  atomLocality);
161
162
163         /*! \brief Get the positions buffer on the GPU.
164          *
165          *  \returns GPU positions buffer.
166          */
167         DeviceBuffer<float> getCoordinates();
168
169         /*! \brief Copy positions to the GPU memory.
170          *
171          *  \param[in] h_x           Positions in the host memory.
172          *  \param[in] atomLocality  Locality of the particles to copy.
173          */
174         void copyCoordinatesToGpu(gmx::ArrayRef<const gmx::RVec>  h_x,
175                                   AtomLocality                    atomLocality);
176
177         /*! \brief Get the event synchronizer of the coordinates ready for the consumption on the device.
178          *
179          * Returns the event synchronizer which indicates that the coordinates are ready for the
180          * consumption on the device. Takes into account that the producer may be different.
181          *
182          * If the update is offloaded, and the current step is not a DD/search step, the returned
183          * synchronizer indicates the completion of GPU update-constraint kernels. Otherwise, on search
184          * steps and if update is not offloaded, the coordinates are provided by the H2D copy and the
185          * returned synchronizer indicates that the copy is complete.
186          *
187          *  \param[in] atomLocality    Locality of the particles to wait for.
188          *  \param[in] simulationWork  The simulation lifetime flags.
189          *  \param[in] stepWork        The step lifetime flags.
190          *
191          *  \returns  The event to synchronize the stream that consumes coordinates on device.
192          */
193         GpuEventSynchronizer* getCoordinatesReadyOnDeviceEvent(AtomLocality              atomLocality,
194                                                                const SimulationWorkload &simulationWork,
195                                                                const StepWorkload       &stepWork);
196
197         /*! \brief Getter for the event synchronizer for the update is done on th GPU
198          *
199          *  \returns  The event to synchronize the stream coordinates wre updated on device.
200          */
201         GpuEventSynchronizer* xUpdatedOnDevice();
202
203         /*! \brief Copy positions from the GPU memory.
204          *
205          *  \param[in] h_x           Positions buffer in the host memory.
206          *  \param[in] atomLocality  Locality of the particles to copy.
207          */
208         void copyCoordinatesFromGpu(gmx::ArrayRef<gmx::RVec>  h_x,
209                                     AtomLocality              atomLocality);
210
211         /*! \brief Wait until coordinates are available on the host.
212          *
213          *  \param[in] atomLocality  Locality of the particles to wait for.
214          */
215         void waitCoordinatesReadyOnHost(AtomLocality  atomLocality);
216
217
218         /*! \brief Get the velocities buffer on the GPU.
219          *
220          *  \returns GPU velocities buffer.
221          */
222         DeviceBuffer<float> getVelocities();
223
224         /*! \brief Copy velocities to the GPU memory.
225          *
226          *  \param[in] h_v           Velocities in the host memory.
227          *  \param[in] atomLocality  Locality of the particles to copy.
228          */
229         void copyVelocitiesToGpu(gmx::ArrayRef<const gmx::RVec>  h_v,
230                                  AtomLocality                    atomLocality);
231
232         /*! \brief Get the event synchronizer for the H2D velocities copy.
233          *
234          *  \param[in] atomLocality  Locality of the particles to wait for.
235          *
236          *  \returns  The event to synchronize the stream that consumes velocities on device.
237          */
238         GpuEventSynchronizer* getVelocitiesReadyOnDeviceEvent(AtomLocality  atomLocality);
239
240         /*! \brief Copy velocities from the GPU memory.
241          *
242          *  \param[in] h_v           Velocities buffer in the host memory.
243          *  \param[in] atomLocality  Locality of the particles to copy.
244          */
245         void copyVelocitiesFromGpu(gmx::ArrayRef<gmx::RVec>  h_v,
246                                    AtomLocality              atomLocality);
247
248         /*! \brief Wait until velocities are available on the host.
249          *
250          *  \param[in] atomLocality  Locality of the particles to wait for.
251          */
252         void waitVelocitiesReadyOnHost(AtomLocality  atomLocality);
253
254
255         /*! \brief Get the force buffer on the GPU.
256          *
257          *  \returns GPU force buffer.
258          */
259         DeviceBuffer<float> getForces();
260
261         /*! \brief Copy forces to the GPU memory.
262          *
263          *  \param[in] h_f           Forces in the host memory.
264          *  \param[in] atomLocality  Locality of the particles to copy.
265          */
266         void copyForcesToGpu(gmx::ArrayRef<const gmx::RVec>  h_f,
267                              AtomLocality                    atomLocality);
268
269         /*! \brief Get the event synchronizer for the H2D forces copy.
270          *
271          *  \param[in] atomLocality  Locality of the particles to wait for.
272          *
273          *  \returns  The event to synchronize the stream that consumes forces on device.
274          */
275         GpuEventSynchronizer* getForcesReadyOnDeviceEvent(AtomLocality  atomLocality);
276
277         /*! \brief Copy forces from the GPU memory.
278          *
279          *  \param[in] h_f           Forces buffer in the host memory.
280          *  \param[in] atomLocality  Locality of the particles to copy.
281          */
282         void copyForcesFromGpu(gmx::ArrayRef<gmx::RVec>  h_f,
283                                AtomLocality              atomLocality);
284
285         /*! \brief Wait until forces are available on the host.
286          *
287          *  \param[in] atomLocality  Locality of the particles to wait for.
288          */
289         void waitForcesReadyOnHost(AtomLocality  atomLocality);
290
291         /*! \brief Getter for the update stream.
292          *
293          *  \todo This is temporary here, until the management of this stream is taken over.
294          *
295          *  \returns The device command stream to use in update-constraints.
296          */
297         void* getUpdateStream();
298
299         /*! \brief Getter for the number of local atoms.
300          *
301          *  \returns The number of local atoms.
302          */
303         int numAtomsLocal();
304
305         /*! \brief Getter for the total number of atoms.
306          *
307          *  \returns The total number of atoms.
308          */
309         int numAtomsAll();
310
311     private:
312         class Impl;
313         gmx::PrivateImplPointer<Impl> impl_;
314         GMX_DISALLOW_COPY_AND_ASSIGN(StatePropagatorDataGpu);
315 };
316
317 }      // namespace gmx
318
319 #endif // GMX_MDTYPES_STATE_PROPAGATOR_DATA_GPU_H