Make DeviceStream into a class
[alexxy/gromacs.git] / src / gromacs / mdlib / update_constrain_gpu_impl.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2019,2020, 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 Stub for update and constraints class CPU implementation.
38  *
39  * \author Artem Zhmurov <zhmurov@gmail.com>
40  *
41  * \ingroup module_mdlib
42  */
43 #include "gmxpre.h"
44
45 #include "config.h"
46
47 #include "gromacs/mdlib/update_constrain_gpu.h"
48
49 #if GMX_GPU != GMX_GPU_CUDA
50
51 namespace gmx
52 {
53
54 class UpdateConstrainGpu::Impl
55 {
56 };
57
58 UpdateConstrainGpu::UpdateConstrainGpu(const t_inputrec& /* ir   */,
59                                        const gmx_mtop_t& /* mtop */,
60                                        const DeviceContext& /* deviceContext */,
61                                        const DeviceStream& /* deviceStream */,
62                                        GpuEventSynchronizer* /* xUpdatedOnDevice */) :
63     impl_(nullptr)
64 {
65     GMX_ASSERT(false,
66                "A CPU stub for UpdateConstrain was called instead of the correct implementation.");
67 }
68
69 UpdateConstrainGpu::~UpdateConstrainGpu() = default;
70
71 void UpdateConstrainGpu::integrate(GpuEventSynchronizer* /* fReadyOnDevice */,
72                                    const real /* dt */,
73                                    const bool /* updateVelocities */,
74                                    const bool /* computeVirial */,
75                                    tensor /* virialScaled */,
76                                    const bool /* doTemperatureScaling */,
77                                    gmx::ArrayRef<const t_grp_tcstat> /* tcstat */,
78                                    const bool /* doParrinelloRahman */,
79                                    const float /* dtPressureCouple */,
80                                    const matrix /* prVelocityScalingMatrix*/)
81 {
82     GMX_ASSERT(false,
83                "A CPU stub for UpdateConstrain was called instead of the correct implementation.");
84 }
85
86 void UpdateConstrainGpu::scaleCoordinates(const matrix /* scalingMatrix */)
87 {
88     GMX_ASSERT(false,
89                "A CPU stub for UpdateConstrain was called instead of the correct implementation.");
90 }
91
92 void UpdateConstrainGpu::set(DeviceBuffer<RVec> /* d_x */,
93                              DeviceBuffer<RVec> /* d_v */,
94                              const DeviceBuffer<RVec> /* d_f */,
95                              const InteractionDefinitions& /* idef */,
96                              const t_mdatoms& /* md */,
97                              const int /* numTempScaleValues */)
98 {
99     GMX_ASSERT(false,
100                "A CPU stub for UpdateConstrain was called instead of the correct implementation.");
101 }
102
103 void UpdateConstrainGpu::setPbc(const PbcType /* pbcType */, const matrix /* box */)
104 {
105     GMX_ASSERT(false,
106                "A CPU stub for UpdateConstrain was called instead of the correct implementation.");
107 }
108
109 GpuEventSynchronizer* UpdateConstrainGpu::getCoordinatesReadySync()
110 {
111     GMX_ASSERT(false,
112                "A CPU stub for UpdateConstrain was called instead of the correct implementation.");
113     return nullptr;
114 }
115
116 bool UpdateConstrainGpu::isNumCoupledConstraintsSupported(const gmx_mtop_t& /* mtop */)
117 {
118     return false;
119 }
120
121 } // namespace gmx
122
123 #endif /* GMX_GPU != GMX_GPU_CUDA */