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 Stub for update and constraints class CPU implementation.
39 * \author Artem Zhmurov <zhmurov@gmail.com>
41 * \ingroup module_mdlib
47 #include "gromacs/mdlib/update_constrain_cuda.h"
49 #if GMX_GPU != GMX_GPU_CUDA
54 /*!\brief Impl class stub. */
55 class UpdateConstrainCuda::Impl
59 /*!\brief Constructor stub. */
60 UpdateConstrainCuda::UpdateConstrainCuda(gmx_unused
int numAtoms
,
61 gmx_unused
const t_inputrec
&ir
,
62 gmx_unused
const gmx_mtop_t
&mtop
)
65 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
68 UpdateConstrainCuda::~UpdateConstrainCuda() = default;
70 /*!\brief integrate stub. */
71 void UpdateConstrainCuda::integrate(gmx_unused
const real dt
,
72 gmx_unused
const bool updateVelocities
,
73 gmx_unused
const bool computeVirial
,
74 gmx_unused tensor virialScaled
)
76 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
79 /*!\brief Set method stub. */
80 void UpdateConstrainCuda::set(gmx_unused
const t_idef
&idef
,
81 gmx_unused
const t_mdatoms
&md
)
83 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
86 /*!\brief Set PBC stub. */
87 void UpdateConstrainCuda::setPbc(gmx_unused
const t_pbc
*pbc
)
89 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
92 /*! \brief Copy coordinates from provided CPU location to GPU stub. */
93 void UpdateConstrainCuda::copyCoordinatesToGpu(gmx_unused
const rvec
*h_x
)
95 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
98 /*! \brief Copy velocities from provided CPU location to GPU stub. */
99 void UpdateConstrainCuda::copyVelocitiesToGpu(gmx_unused
const rvec
*h_v
)
101 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
104 /*! \brief Copy forces from CPU to GPU stub. */
105 void UpdateConstrainCuda::copyForcesToGpu(gmx_unused
const rvec
*h_f
)
107 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
110 /*! \brief Copy coordinates from GPU to provided CPU location stub. */
111 void UpdateConstrainCuda::copyCoordinatesFromGpu(gmx_unused rvec
*h_xp
)
113 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
116 /*! \brief Copy velocities from GPU to provided CPU location stub. */
117 void UpdateConstrainCuda::copyVelocitiesFromGpu(gmx_unused rvec
*h_v
)
119 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
122 /*! \brief Copy forces from GPU to CPU stub. */
123 void UpdateConstrainCuda::copyForcesFromGpu(gmx_unused rvec
*h_f
)
125 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
128 /*! \brief Set the internal GPU-memory x, xprime and v pointers stub. */
129 void UpdateConstrainCuda::setXVFPointers(gmx_unused rvec
*d_x
,
130 gmx_unused rvec
*d_xp
,
131 gmx_unused rvec
*d_v
,
132 gmx_unused rvec
*d_f
)
134 GMX_ASSERT(false, "A CPU stub for UpdateConstrain was called insted of the correct implementation.");
139 #endif /* GMX_GPU != GMX_GPU_CUDA */