Add second LINCS atom update task
[alexxy/gromacs.git] / src / gromacs / mdlib / gpuforcereduction.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2020,2021, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  *
37  * \brief Declares the GPU Force Reduction
38  *
39  * \author Alan Gray <alang@nvidia.com>
40  *
41  * \ingroup module_mdlib
42  */
43 #ifndef GMX_MDLIB_GPUFORCEREDUCTION_H
44 #define GMX_MDLIB_GPUFORCEREDUCTION_H
45
46 #include <memory>
47
48 #include "config.h"
49
50 #include "gromacs/gpu_utils/devicebuffer_datatype.h"
51 #include "gromacs/math/vectypes.h"
52 #include "gromacs/timing/wallcycle.h"
53 #include "gromacs/utility/arrayref.h"
54 #include "gromacs/utility/fixedcapacityvector.h"
55
56 class GpuEventSynchronizer;
57 class DeviceStream;
58 class DeviceContext;
59
60 namespace gmx
61 {
62
63 #define HAVE_GPU_FORCE_REDUCTION (GMX_GPU_CUDA || GMX_GPU_SYCL)
64
65 /*! \internal
66  * \brief Manages the force reduction directly in GPU memory
67  *
68  * Manages the reduction of multiple GPU force buffers into a single
69  * GPU force buffer. The reduction involves at least one (input/output)
70  * Rvec-format buffer and one (input) Nbat-format buffer, where the
71  * Nbat->Rvec conversion is handled internally. One additional (input)
72  * Rvec-format buffer is supported as optional.
73  */
74 class GpuForceReduction
75 {
76
77 public:
78     /*! \brief Creates GPU force reduction object
79      *
80      * \param [in] deviceContext GPU device context
81      * \param [in] deviceStream  Stream to use for reduction
82      * \param [in] wcycle        Wall-clock cycle counter
83      */
84     GpuForceReduction(const DeviceContext& deviceContext,
85                       const DeviceStream&  deviceStream,
86                       gmx_wallcycle*       wcycle);
87     ~GpuForceReduction();
88
89     /*! \brief Register a nbnxm-format force to be reduced
90      *
91      * \param [in] forcePtr  Pointer to force to be reduced
92      */
93     void registerNbnxmForce(DeviceBuffer<RVec> forcePtr);
94
95     /*! \brief Register a rvec-format force to be reduced
96      *
97      * \param [in] forcePtr  Pointer to force to be reduced
98      */
99     void registerRvecForce(DeviceBuffer<RVec> forcePtr);
100
101     /*! \brief Add a dependency for this force reduction
102      *
103      * \param [in] dependency   Dependency for this reduction
104      */
105     void addDependency(GpuEventSynchronizer* dependency);
106
107     /*! \brief Reinitialize the GPU force reduction
108      *
109      * \param [in] baseForcePtr     Pointer to force to be used as a base
110      * \param [in] numAtoms         The number of atoms
111      * \param [in] cell             Pointer to the cell array
112      * \param [in] atomStart        The start atom for the reduction
113      * \param [in] accumulate       Whether reduction should be accumulated
114      * \param [in] completionMarker Event to be marked when launch of reduction is complete
115      */
116     void reinit(DeviceBuffer<RVec>    baseForcePtr,
117                 int                   numAtoms,
118                 ArrayRef<const int>   cell,
119                 int                   atomStart,
120                 bool                  accumulate,
121                 GpuEventSynchronizer* completionMarker = nullptr);
122
123     /*! \brief Execute the force reduction */
124     void execute();
125
126 private:
127     class Impl;
128     std::unique_ptr<Impl> impl_;
129 };
130
131 } // namespace gmx
132
133 #endif