Simplified uniform GPU selection in CMake
[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, 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 */)
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 {
108     GMX_ASSERT(!impl_,
109                "A CPU stub method from GPU state propagator data was called instead of one from "
110                "GPU implementation.");
111     return nullptr;
112 }
113
114 void StatePropagatorDataGpu::waitCoordinatesCopiedToDevice(AtomLocality /* atomLocality */)
115 {
116     GMX_ASSERT(!impl_,
117                "A CPU stub method from GPU state propagator data was called instead of one from "
118                "GPU implementation.");
119 }
120
121 GpuEventSynchronizer* StatePropagatorDataGpu::xUpdatedOnDevice()
122 {
123     GMX_ASSERT(!impl_,
124                "A CPU stub method from GPU state propagator data was called instead of one from "
125                "GPU implementation.");
126     return nullptr;
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 {
147     GMX_ASSERT(!impl_,
148                "A CPU stub method from GPU state propagator data was called instead of one from "
149                "GPU implementation.");
150 }
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 GpuEventSynchronizer* StatePropagatorDataGpu::getVelocitiesReadyOnDeviceEvent(AtomLocality /* atomLocality */)
170 {
171     GMX_ASSERT(!impl_,
172                "A CPU stub method from GPU state propagator data was called instead of one from "
173                "GPU implementation.");
174     return nullptr;
175 }
176
177 void StatePropagatorDataGpu::copyVelocitiesFromGpu(gmx::ArrayRef<gmx::RVec> /* h_v          */,
178                                                    AtomLocality /* atomLocality */)
179 {
180     GMX_ASSERT(!impl_,
181                "A CPU stub method from GPU state propagator data was called instead of one from "
182                "GPU implementation.");
183 }
184
185 void StatePropagatorDataGpu::waitVelocitiesReadyOnHost(AtomLocality /* atomLocality */)
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 }
191
192
193 DeviceBuffer<RVec> StatePropagatorDataGpu::getForces()
194 {
195     GMX_ASSERT(!impl_,
196                "A CPU stub method from GPU state propagator data was called instead of one from "
197                "GPU implementation.");
198     return {};
199 }
200
201 void StatePropagatorDataGpu::copyForcesToGpu(const gmx::ArrayRef<const gmx::RVec> /* h_f          */,
202                                              AtomLocality /* atomLocality */)
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::getForcesReadyOnDeviceEvent(AtomLocality /* atomLocality */,
210                                                                           bool /* useGpuFBufferOps */)
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()
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 void StatePropagatorDataGpu::copyForcesFromGpu(gmx::ArrayRef<gmx::RVec> /* h_f          */,
227                                                AtomLocality /* atomLocality */)
228 {
229     GMX_ASSERT(!impl_,
230                "A CPU stub method from GPU state propagator data was called instead of one from "
231                "GPU implementation.");
232 }
233
234 void StatePropagatorDataGpu::waitForcesReadyOnHost(AtomLocality /* atomLocality */)
235 {
236     GMX_ASSERT(!impl_,
237                "A CPU stub method from GPU state propagator data was called instead of one from "
238                "GPU implementation.");
239 }
240
241
242 const DeviceStream* StatePropagatorDataGpu::getUpdateStream()
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     return nullptr;
248 }
249
250 int StatePropagatorDataGpu::numAtomsLocal()
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 0;
256 }
257
258 int StatePropagatorDataGpu::numAtomsAll()
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 } // namespace gmx
267
268 #endif // !GMX_GPU