Make common Leap-Frog device code backend-agnostic
[alexxy/gromacs.git] / src / gromacs / mdlib / leapfrog_gpu_internal_sycl.cpp
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 Implements Leap-Frog using SYCL
38  *
39  * This file contains SYCL implementation of back-end specific code for Leap-Frog.
40  *
41  * \author Artem Zhmurov <zhmurov@gmail.com>
42  * \author Andrey Alekseenko <al42and@gmail.com>
43  *
44  * \ingroup module_mdlib
45  */
46 #include "gmxpre.h"
47
48 #include "leapfrog_gpu_internal.h"
49
50 #include "gromacs/gpu_utils/devicebuffer.h"
51 #include "gromacs/gpu_utils/gmxsycl.h"
52 #include "gromacs/math/vec.h"
53 #include "gromacs/mdlib/leapfrog_gpu.h"
54 #include "gromacs/mdtypes/group.h"
55 #include "gromacs/utility/arrayref.h"
56 #include "gromacs/utility/fatalerror.h"
57 #include "gromacs/utility/template_mp.h"
58
59 namespace gmx
60 {
61
62 using cl::sycl::access::mode;
63
64 /*! \brief Main kernel for the Leap-Frog integrator.
65  *
66  *  The coordinates and velocities are updated on the GPU. Also saves the intermediate values of the coordinates for
67  *   further use in constraints.
68  *
69  *  Each GPU thread works with a single particle.
70  *
71  * \tparam        numTempScaleValues               The number of different T-couple values.
72  * \tparam        velocityScaling                  Type of the Parrinello-Rahman velocity rescaling.
73  * \param         cgh                              SYCL's command group handler.
74  * \param[in,out] a_x                              Coordinates to update upon integration.
75  * \param[out]    a_xp                             A copy of the coordinates before the integration (for constraints).
76  * \param[in,out] a_v                              Velocities to update.
77  * \param[in]     a_f                              Atomic forces.
78  * \param[in]     a_inverseMasses                  Reciprocal masses.
79  * \param[in]     dt                               Timestep.
80  * \param[in]     a_lambdas                        Temperature scaling factors (one per group).
81  * \param[in]     a_tempScaleGroups                Mapping of atoms into groups.
82  * \param[in]     prVelocityScalingMatrixDiagonal  Diagonal elements of Parrinello-Rahman velocity scaling matrix
83  */
84 template<NumTempScaleValues numTempScaleValues, VelocityScalingType velocityScaling>
85 auto leapFrogKernel(
86         cl::sycl::handler&                          cgh,
87         DeviceAccessor<Float3, mode::read_write>    a_x,
88         DeviceAccessor<Float3, mode::discard_write> a_xp,
89         DeviceAccessor<Float3, mode::read_write>    a_v,
90         DeviceAccessor<Float3, mode::read>          a_f,
91         DeviceAccessor<float, mode::read>           a_inverseMasses,
92         float                                       dt,
93         OptionalAccessor<float, mode::read, numTempScaleValues != NumTempScaleValues::None> a_lambdas,
94         OptionalAccessor<unsigned short, mode::read, numTempScaleValues == NumTempScaleValues::Multiple> a_tempScaleGroups,
95         Float3 prVelocityScalingMatrixDiagonal)
96 {
97     cgh.require(a_x);
98     cgh.require(a_xp);
99     cgh.require(a_v);
100     cgh.require(a_f);
101     cgh.require(a_inverseMasses);
102     if constexpr (numTempScaleValues != NumTempScaleValues::None)
103     {
104         cgh.require(a_lambdas);
105     }
106     if constexpr (numTempScaleValues == NumTempScaleValues::Multiple)
107     {
108         cgh.require(a_tempScaleGroups);
109     }
110
111     return [=](cl::sycl::id<1> itemIdx) {
112         const Float3 x    = a_x[itemIdx];
113         const Float3 v    = a_v[itemIdx];
114         const Float3 f    = a_f[itemIdx];
115         const float  im   = a_inverseMasses[itemIdx];
116         const float  imdt = im * dt;
117
118         // Swapping places for xp and x so that the x will contain the updated coordinates and xp -
119         // the coordinates before update. This should be taken into account when (if) constraints
120         // are applied after the update: x and xp have to be passed to constraints in the 'wrong'
121         // order. See Issue #3727
122         a_xp[itemIdx] = x;
123
124         const float lambda = [=]() {
125             if constexpr (numTempScaleValues == NumTempScaleValues::None)
126             {
127                 return 1.0F;
128             }
129             else if constexpr (numTempScaleValues == NumTempScaleValues::Single)
130             {
131                 return a_lambdas[0];
132             }
133             else if constexpr (numTempScaleValues == NumTempScaleValues::Multiple)
134             {
135                 const int tempScaleGroup = a_tempScaleGroups[itemIdx];
136                 return a_lambdas[tempScaleGroup];
137             }
138         }();
139
140         const Float3 prVelocityDelta = [=]() {
141             if constexpr (velocityScaling == VelocityScalingType::Diagonal)
142             {
143                 return Float3{ prVelocityScalingMatrixDiagonal[0] * v[0],
144                                prVelocityScalingMatrixDiagonal[1] * v[1],
145                                prVelocityScalingMatrixDiagonal[2] * v[2] };
146             }
147             else if constexpr (velocityScaling == VelocityScalingType::None)
148             {
149                 return Float3{ 0, 0, 0 };
150             }
151         }();
152
153         const Float3 v_new = v * lambda - prVelocityDelta + f * imdt;
154         a_v[itemIdx]       = v_new;
155         a_x[itemIdx]       = x + v_new * dt;
156     };
157 }
158
159 // SYCL 1.2.1 requires providing a unique type for a kernel. Should not be needed for SYCL2020.
160 template<NumTempScaleValues numTempScaleValues, VelocityScalingType velocityScaling>
161 class LeapFrogKernelName;
162
163 template<NumTempScaleValues numTempScaleValues, VelocityScalingType velocityScaling, class... Args>
164 static cl::sycl::event launchLeapFrogKernel(const DeviceStream& deviceStream, int numAtoms, Args&&... args)
165 {
166     // Should not be needed for SYCL2020.
167     using kernelNameType = LeapFrogKernelName<numTempScaleValues, velocityScaling>;
168
169     const cl::sycl::range<1> rangeAllAtoms(numAtoms);
170     cl::sycl::queue          q = deviceStream.stream();
171
172     cl::sycl::event e = q.submit([&](cl::sycl::handler& cgh) {
173         auto kernel =
174                 leapFrogKernel<numTempScaleValues, velocityScaling>(cgh, std::forward<Args>(args)...);
175         cgh.parallel_for<kernelNameType>(rangeAllAtoms, kernel);
176     });
177
178     return e;
179 }
180
181 static NumTempScaleValues getTempScalingType(bool doTemperatureScaling, int numTempScaleValues)
182 {
183     if (!doTemperatureScaling)
184     {
185         return NumTempScaleValues::None;
186     }
187     else if (numTempScaleValues == 1)
188     {
189         return NumTempScaleValues::Single;
190     }
191     else if (numTempScaleValues > 1)
192     {
193         return NumTempScaleValues::Multiple;
194     }
195     else
196     {
197         gmx_incons("Temperature coupling was requested with no temperature coupling groups.");
198     }
199 }
200
201 /*! \brief Select templated kernel and launch it. */
202 template<class... Args>
203 static inline cl::sycl::event launchLeapFrogKernel(NumTempScaleValues  tempScalingType,
204                                                    VelocityScalingType prVelocityScalingType,
205                                                    Args&&... args)
206 {
207     GMX_ASSERT(prVelocityScalingType == VelocityScalingType::None
208                        || prVelocityScalingType == VelocityScalingType::Diagonal,
209                "Only isotropic Parrinello-Rahman pressure coupling is supported.");
210
211     return dispatchTemplatedFunction(
212             [&](auto tempScalingType_, auto prScalingType_) {
213                 return launchLeapFrogKernel<tempScalingType_, prScalingType_>(std::forward<Args>(args)...);
214             },
215             tempScalingType,
216             prVelocityScalingType);
217 }
218
219 void launchLeapFrogKernel(int                                numAtoms,
220                           DeviceBuffer<Float3>               d_x,
221                           DeviceBuffer<Float3>               d_xp,
222                           DeviceBuffer<Float3>               d_v,
223                           const DeviceBuffer<Float3>         d_f,
224                           const DeviceBuffer<float>          d_inverseMasses,
225                           const float                        dt,
226                           const bool                         doTemperatureScaling,
227                           const int                          numTempScaleValues,
228                           const DeviceBuffer<unsigned short> d_tempScaleGroups,
229                           const DeviceBuffer<float>          d_lambdas,
230                           const VelocityScalingType          prVelocityScalingType,
231                           const Float3                       prVelocityScalingMatrixDiagonal,
232                           const DeviceStream&                deviceStream)
233 {
234     NumTempScaleValues tempVelocityScalingType =
235             getTempScalingType(doTemperatureScaling, numTempScaleValues);
236
237
238     launchLeapFrogKernel(tempVelocityScalingType,
239                          prVelocityScalingType,
240                          deviceStream,
241                          numAtoms,
242                          d_x,
243                          d_xp,
244                          d_v,
245                          d_f,
246                          d_inverseMasses,
247                          dt,
248                          d_lambdas,
249                          d_tempScaleGroups,
250                          prVelocityScalingMatrixDiagonal);
251 }
252
253 } // namespace gmx