2 * This file is part of the GROMACS molecular simulation package.
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.
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.
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.
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.
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.
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.
37 * \brief Declares CUDA implementation class for update and constraints.
39 * This header file is needed to include from both the device-side
40 * kernels file, and the host-side management code.
42 * \author Artem Zhmurov <zhmurov@gmail.com>
44 * \ingroup module_mdlib
46 #ifndef GMX_MDLIB_UPDATE_CONSTRAIN_CUDA_IMPL_H
47 #define GMX_MDLIB_UPDATE_CONSTRAIN_CUDA_IMPL_H
49 #include "gromacs/mdlib/leapfrog_cuda.h"
50 #include "gromacs/mdlib/lincs_cuda.h"
51 #include "gromacs/mdlib/settle_cuda.h"
52 #include "gromacs/mdlib/update_constrain_cuda.h"
53 #include "gromacs/mdtypes/inputrec.h"
54 #include "gromacs/pbcutil/pbc.h"
55 #include "gromacs/pbcutil/pbc_aiuc_cuda.cuh"
56 #include "gromacs/topology/idef.h"
61 /*! \internal \brief Class with interfaces and data for CUDA version of Update-Constraint. */
62 class UpdateConstrainCuda::Impl
66 /*! \brief Create Update-Constrain object
68 * \param[in] numAtoms Number of atoms.
69 * \param[in] ir Input record data: LINCS takes number of iterations and order of
71 * \param[in] mtop Topology of the system: SETTLE gets the masses for O and H atoms
72 * and target O-H and H-H distances from this object.
76 const gmx_mtop_t
&mtop
);
82 * Integrates the equation of motion using Leap-Frog algorithm and applies
83 * LINCS and SETTLE constraints.
84 * Updates d_xp_ and d_v_ fields of this object.
86 * \param[in] dt Timestep
87 * \param[in] updateVelocities If the velocities should be constrained.
88 * \param[in] computeVirial If virial should be updated.
89 * \param[out] virial Place to save virial tensor.
91 void integrate(const real dt
,
92 const bool updateVelocities
,
93 const bool computeVirial
,
97 * Update data-structures (e.g. after NB search step).
99 * \param[in] idef System topology
100 * \param[in] md Atoms data. Can be used to update masses if needed (not used now).
102 void set(const t_idef
&idef
,
103 const t_mdatoms
&md
);
108 * Converts PBC data from t_pbc into the PbcAiuc format and stores the latter.
110 * \param[in] pbc The PBC data in t_pbc format.
112 void setPbc(const t_pbc
*pbc
);
115 * Copy coordinates from CPU to GPU.
117 * The data are assumed to be in float3/fvec format (single precision).
119 * \param[in] h_x CPU pointer where coordinates should be copied from.
121 void copyCoordinatesToGpu(const rvec
*h_x
);
124 * Copy velocities from CPU to GPU.
126 * The data are assumed to be in float3/fvec format (single precision).
128 * \param[in] h_v CPU pointer where velocities should be copied from.
130 void copyVelocitiesToGpu(const rvec
*h_v
);
133 * Copy forces from CPU to GPU.
135 * The data are assumed to be in float3/fvec format (single precision).
137 * \param[in] h_f CPU pointer where forces should be copied from.
139 void copyForcesToGpu(const rvec
*h_f
);
142 * Copy coordinates from GPU to CPU.
144 * The data are assumed to be in float3/fvec format (single precision).
146 * \param[out] h_xp CPU pointer where coordinates should be copied to.
148 void copyCoordinatesFromGpu(rvec
*h_xp
);
151 * Copy velocities from GPU to CPU.
153 * The velocities are assumed to be in float3/fvec format (single precision).
155 * \param[in] h_v Pointer to velocities data.
157 void copyVelocitiesFromGpu(rvec
*h_v
);
160 * Copy forces from GPU to CPU.
162 * The forces are assumed to be in float3/fvec format (single precision).
164 * \param[in] h_f Pointer to forces data.
166 void copyForcesFromGpu(rvec
*h_f
);
169 * Set the internal GPU-memory x, xprime and v pointers.
171 * Data is not copied. The data are assumed to be in float3/fvec format
172 * (float3 is used internally, but the data layout should be identical).
174 * \param[in] d_x Pointer to the coordinates for the input (on GPU)
175 * \param[in] d_xp Pointer to the coordinates for the output (on GPU)
176 * \param[in] d_v Pointer to the velocities (on GPU)
177 * \param[in] d_f Pointer to the forces (on GPU)
179 void setXVFPointers(rvec
*d_x
, rvec
*d_xp
, rvec
*d_v
, rvec
*d_f
);
184 cudaStream_t stream_
;
186 //! Periodic boundary data
192 //! Coordinates before the timestep (on GPU)
194 //! Coordinates after the timestep (on GPU).
196 //! Velocities of atoms (on GPU)
198 //! Forces, exerted by atoms (on GPU)
201 //! 1/mass for all atoms (GPU)
202 real
*d_inverseMasses_
;
204 //! Leap-Frog integrator
205 std::unique_ptr
<LeapFrogCuda
> integrator_
;
206 //! LINCS CUDA object to use for non-water constraints
207 std::unique_ptr
<LincsCuda
> lincsCuda_
;
208 //! SETTLE CUDA object for water constrains
209 std::unique_ptr
<SettleCuda
> settleCuda_
;