618856d0ce1a6fb650ce9cc5cdcd2c6f18cd9894
[alexxy/gromacs.git] / src / gromacs / mdtypes / state_propagator_data_gpu_impl.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2019,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 The CPU stub for the state propagator data class.
38  *
39  * \author Artem Zhmurov <zhmurov@gmail.com>
40  *
41  * \ingroup module_mdtypes
42  */
43 #include "gmxpre.h"
44
45 #include "config.h"
46
47 #include "gromacs/mdtypes/state_propagator_data_gpu.h"
48
49 #if !GMX_GPU
50 namespace gmx
51 {
52
53 class StatePropagatorDataGpu::Impl
54 {
55 };
56
57 StatePropagatorDataGpu::StatePropagatorDataGpu(const DeviceStreamManager& /* deviceStreamManager */,
58                                                GpuApiCallBehavior /* transferKind    */,
59                                                int /* allocationBlockSizeDivisor */,
60                                                gmx_wallcycle* /*   wcycle */) :
61     impl_(nullptr)
62 {
63 }
64
65 StatePropagatorDataGpu::StatePropagatorDataGpu(const DeviceStream* /* pmeStream       */,
66                                                const DeviceContext& /* deviceContext   */,
67                                                GpuApiCallBehavior /* transferKind    */,
68                                                int /* allocationBlockSizeDivisor */,
69                                                gmx_wallcycle* /*   wcycle */) :
70     impl_(nullptr)
71 {
72 }
73
74 StatePropagatorDataGpu::StatePropagatorDataGpu(StatePropagatorDataGpu&& /* other */) noexcept = default;
75
76 StatePropagatorDataGpu& StatePropagatorDataGpu::operator=(StatePropagatorDataGpu&& /* other */) noexcept = default;
77
78 StatePropagatorDataGpu::~StatePropagatorDataGpu() = default;
79
80 void StatePropagatorDataGpu::reinit(int /* numAtomsLocal */, int /* numAtomsAll   */)
81 {
82     GMX_ASSERT(!impl_,
83                "A CPU stub method from GPU state propagator data was called instead of one from "
84                "GPU implementation.");
85 }
86
87 std::tuple<int, int> StatePropagatorDataGpu::getAtomRangesFromAtomLocality(AtomLocality /* atomLocality */) const
88 {
89     GMX_ASSERT(!impl_,
90                "A CPU stub method from GPU state propagator data was called instead of one from "
91                "GPU implementation.");
92     return std::make_tuple(0, 0);
93 }
94
95 DeviceBuffer<RVec> StatePropagatorDataGpu::getCoordinates()
96 {
97     GMX_ASSERT(!impl_,
98                "A CPU stub method from GPU state propagator data was called instead of one from "
99                "GPU implementation.");
100     return {};
101 }
102
103 GpuEventSynchronizer* StatePropagatorDataGpu::getCoordinatesReadyOnDeviceEvent(
104         AtomLocality /* atomLocality */,
105         const SimulationWorkload& /* simulationWork */,
106         const StepWorkload& /* stepWork       */,
107         GpuEventSynchronizer* /* gpuCoordinateHaloLaunched */)
108 {
109     GMX_ASSERT(!impl_,
110                "A CPU stub method from GPU state propagator data was called instead of one from "
111                "GPU implementation.");
112     return nullptr;
113 }
114
115 void StatePropagatorDataGpu::waitCoordinatesCopiedToDevice(AtomLocality /* atomLocality */)
116 {
117     GMX_ASSERT(!impl_,
118                "A CPU stub method from GPU state propagator data was called instead of one from "
119                "GPU implementation.");
120 }
121
122 void StatePropagatorDataGpu::setXUpdatedOnDeviceEvent(GpuEventSynchronizer* /* xUpdatedOnDeviceEvent */)
123 {
124     GMX_ASSERT(!impl_,
125                "A CPU stub method from GPU state propagator data was called instead of one from "
126                "GPU implementation.");
127 }
128
129 void StatePropagatorDataGpu::copyCoordinatesToGpu(const gmx::ArrayRef<const gmx::RVec> /* h_x */,
130                                                   AtomLocality /* atomLocality */)
131 {
132     GMX_ASSERT(!impl_,
133                "A CPU stub method from GPU state propagator data was called instead of one from "
134                "GPU implementation.");
135 }
136
137 void StatePropagatorDataGpu::waitCoordinatesReadyOnHost(AtomLocality /* atomLocality */)
138 {
139     GMX_ASSERT(!impl_,
140                "A CPU stub method from GPU state propagator data was called instead of one from "
141                "GPU implementation.");
142 }
143
144 void StatePropagatorDataGpu::copyCoordinatesFromGpu(gmx::ArrayRef<gmx::RVec> /* h_x          */,
145                                                     AtomLocality /* atomLocality */,
146                                                     GpuEventSynchronizer* /*dependency */)
147 {
148     GMX_ASSERT(!impl_,
149                "A CPU stub method from GPU state propagator data was called instead of one from "
150                "GPU implementation.");
151 }
152
153 DeviceBuffer<RVec> StatePropagatorDataGpu::getVelocities()
154 {
155     GMX_ASSERT(!impl_,
156                "A CPU stub method from GPU state propagator data was called instead of one from "
157                "GPU implementation.");
158     return {};
159 }
160
161 void StatePropagatorDataGpu::copyVelocitiesToGpu(const gmx::ArrayRef<const gmx::RVec> /* h_v */,
162                                                  AtomLocality /* atomLocality */)
163 {
164     GMX_ASSERT(!impl_,
165                "A CPU stub method from GPU state propagator data was called instead of one from "
166                "GPU implementation.");
167 }
168
169 void StatePropagatorDataGpu::copyVelocitiesFromGpu(gmx::ArrayRef<gmx::RVec> /* h_v          */,
170                                                    AtomLocality /* atomLocality */)
171 {
172     GMX_ASSERT(!impl_,
173                "A CPU stub method from GPU state propagator data was called instead of one from "
174                "GPU implementation.");
175 }
176
177 void StatePropagatorDataGpu::waitVelocitiesReadyOnHost(AtomLocality /* atomLocality */)
178 {
179     GMX_ASSERT(!impl_,
180                "A CPU stub method from GPU state propagator data was called instead of one from "
181                "GPU implementation.");
182 }
183
184
185 DeviceBuffer<RVec> StatePropagatorDataGpu::getForces()
186 {
187     GMX_ASSERT(!impl_,
188                "A CPU stub method from GPU state propagator data was called instead of one from "
189                "GPU implementation.");
190     return {};
191 }
192
193 void StatePropagatorDataGpu::copyForcesToGpu(const gmx::ArrayRef<const gmx::RVec> /* h_f          */,
194                                              AtomLocality /* atomLocality */)
195 {
196     GMX_ASSERT(!impl_,
197                "A CPU stub method from GPU state propagator data was called instead of one from "
198                "GPU implementation.");
199 }
200
201 void StatePropagatorDataGpu::clearForcesOnGpu(AtomLocality /* atomLocality */,
202                                               GpuEventSynchronizer* /* dependency */)
203 {
204     GMX_ASSERT(!impl_,
205                "A CPU stub method from GPU state propagator data was called instead of one from "
206                "GPU implementation.");
207 }
208
209 GpuEventSynchronizer* StatePropagatorDataGpu::getLocalForcesReadyOnDeviceEvent(StepWorkload /* stepWork */,
210                                                                                SimulationWorkload /* simulationWork */)
211 {
212     GMX_ASSERT(!impl_,
213                "A CPU stub method from GPU state propagator data was called instead of one from "
214                "GPU implementation.");
215     return nullptr;
216 }
217
218 GpuEventSynchronizer* StatePropagatorDataGpu::fReducedOnDevice(AtomLocality /*atomLocality*/)
219 {
220     GMX_ASSERT(!impl_,
221                "A CPU stub method from GPU state propagator data was called instead of one from "
222                "GPU implementation.");
223     return nullptr;
224 }
225
226 GpuEventSynchronizer* StatePropagatorDataGpu::fReadyOnDevice(AtomLocality /*atomLocality*/)
227 {
228     GMX_ASSERT(!impl_,
229                "A CPU stub method from GPU state propagator data was called instead of one from "
230                "GPU implementation.");
231     return nullptr;
232 }
233
234 void StatePropagatorDataGpu::copyForcesFromGpu(gmx::ArrayRef<gmx::RVec> /* h_f          */,
235                                                AtomLocality /* atomLocality */)
236 {
237     GMX_ASSERT(!impl_,
238                "A CPU stub method from GPU state propagator data was called instead of one from "
239                "GPU implementation.");
240 }
241
242 void StatePropagatorDataGpu::waitForcesReadyOnHost(AtomLocality /* atomLocality */)
243 {
244     GMX_ASSERT(!impl_,
245                "A CPU stub method from GPU state propagator data was called instead of one from "
246                "GPU implementation.");
247 }
248
249
250 const DeviceStream* StatePropagatorDataGpu::getUpdateStream()
251 {
252     GMX_ASSERT(!impl_,
253                "A CPU stub method from GPU state propagator data was called instead of one from "
254                "GPU implementation.");
255     return nullptr;
256 }
257
258 int StatePropagatorDataGpu::numAtomsLocal() const
259 {
260     GMX_ASSERT(!impl_,
261                "A CPU stub method from GPU state propagator data was called instead of one from "
262                "GPU implementation.");
263     return 0;
264 }
265
266 int StatePropagatorDataGpu::numAtomsAll() const
267 {
268     GMX_ASSERT(!impl_,
269                "A CPU stub method from GPU state propagator data was called instead of one from "
270                "GPU implementation.");
271     return 0;
272 }
273
274 } // namespace gmx
275
276 #endif // !GMX_GPU