ee6ff74b07b8c586f8936306aa00336c63e793df
[alexxy/gromacs.git] / src / gromacs / mdlib / update_constrain_cuda.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 /*! \libinternal \file
36  *
37  * \brief Declaration of high-level functions of CUDA implementation of update and constrain class.
38  *
39  * \todo Change "cuda" suffix to "gpu"
40  *
41  * \author Artem Zhmurov <zhmurov@gmail.com>
42  *
43  * \ingroup module_mdlib
44  * \inlibraryapi
45  */
46 #ifndef GMX_MDLIB_UPDATE_CONSTRAIN_CUDA_H
47 #define GMX_MDLIB_UPDATE_CONSTRAIN_CUDA_H
48
49 #include "gromacs/gpu_utils/devicebuffer_datatype.h"
50 #include "gromacs/mdtypes/group.h"
51 #include "gromacs/utility/arrayref.h"
52 #include "gromacs/utility/classhelpers.h"
53
54 class GpuEventSynchronizer;
55
56 struct gmx_mtop_t;
57 struct t_idef;
58 struct t_inputrec;
59 struct t_mdatoms;
60 struct t_pbc;
61
62 namespace gmx
63 {
64
65 class UpdateConstrainCuda
66 {
67
68 public:
69     /*! \brief Create Update-Constrain object.
70      *
71      * The constructor is given a non-nullptr \p commandStream, in which all the update and constrain
72      * routines are executed. \p xUpdatedOnDevice should mark the completion of all kernels that modify
73      * coordinates. The event is maintained outside this class and also passed to all (if any) consumers
74      * of the updated coordinates. The \p xUpdatedOnDevice also can not be a nullptr because the
75      * markEvent(...) method is called unconditionally.
76      *
77      * \param[in] ir                Input record data: LINCS takes number of iterations and order of
78      *                              projection from it.
79      * \param[in] mtop              Topology of the system: SETTLE gets the masses for O and H atoms
80      *                              and target O-H and H-H distances from this object.
81      * \param[in] commandStream     GPU stream to use. Can be nullptr.
82      * \param[in] xUpdatedOnDevice  The event synchronizer to use to mark that update is done on the GPU.
83      */
84     UpdateConstrainCuda(const t_inputrec&     ir,
85                         const gmx_mtop_t&     mtop,
86                         const void*           commandStream,
87                         GpuEventSynchronizer* xUpdatedOnDevice);
88
89     ~UpdateConstrainCuda();
90
91     /*! \brief Integrate
92      *
93      * This will extract temperature scaling factors from tcstat, transform them into the plain
94      * array and call the normal integrate method.
95      *
96      * \param[in]  fReadyOnDevice           Event synchronizer indicating that the forces are
97      *                                      ready in the device memory.
98      * \param[in]  dt                       Timestep.
99      * \param[in]  updateVelocities         If the velocities should be constrained.
100      * \param[in]  computeVirial            If virial should be updated.
101      * \param[out] virial                   Place to save virial tensor.
102      * \param[in]  doTemperatureScaling     If velocities should be scaled for temperature coupling.
103      * \param[in]  tcstat                   Temperature coupling data.
104      * \param[in]  doParrinelloRahman       If current step is a Parrinello-Rahman pressure coupling step.
105      * \param[in]  dtPressureCouple         Period between pressure coupling steps.
106      * \param[in]  prVelocityScalingMatrix  Parrinello-Rahman velocity scaling matrix.
107      */
108     void integrate(GpuEventSynchronizer*             fReadyOnDevice,
109                    real                              dt,
110                    bool                              updateVelocities,
111                    bool                              computeVirial,
112                    tensor                            virial,
113                    bool                              doTemperatureScaling,
114                    gmx::ArrayRef<const t_grp_tcstat> tcstat,
115                    bool                              doParrinelloRahman,
116                    float                             dtPressureCouple,
117                    const matrix                      prVelocityScalingMatrix);
118
119     /*! \brief Scale coordinates on the GPU for the pressure coupling.
120      *
121      * After pressure coupling step, the box size may change. Hence, the coordinates should be
122      * scaled so that all the particles fit in the new box.
123      *
124      * \param[in] scalingMatrix Coordinates scaling matrix.
125      */
126     void scaleCoordinates(const matrix scalingMatrix);
127
128     /*! \brief Set the pointers and update data-structures (e.g. after NB search step).
129      *
130      * \param[in,out]  d_x                 Device buffer with coordinates.
131      * \param[in,out]  d_v                 Device buffer with velocities.
132      * \param[in]      d_f                 Device buffer with forces.
133      * \param[in]      idef                System topology
134      * \param[in]      md                  Atoms data.
135      * \param[in]      numTempScaleValues  Number of temperature scaling groups. Zero for no temperature scaling.
136      */
137     void set(DeviceBuffer<float> d_x,
138              DeviceBuffer<float> d_v,
139              DeviceBuffer<float> d_f,
140              const t_idef&       idef,
141              const t_mdatoms&    md,
142              int                 numTempScaleValues);
143
144     /*! \brief
145      * Update PBC data.
146      *
147      * Converts PBC data from t_pbc into the PbcAiuc format and stores the latter.
148      *
149      * \param[in] pbc The PBC data in t_pbc format.
150      */
151     void setPbc(const t_pbc* pbc);
152
153     /*! \brief Return the synchronizer associated with the event indicated that the coordinates are ready on the device.
154      */
155     GpuEventSynchronizer* getCoordinatesReadySync();
156
157 private:
158     class Impl;
159     gmx::PrivateImplPointer<Impl> impl_;
160 };
161
162 } // namespace gmx
163
164 #endif