Define stubs for GPU data structures in SYCL to make SYCL compilation possible
[gromacs.git] / src / gromacs / gpu_utils / devicebuffer.h
bloba13f0c62625315e7979c71e931e93b00924ea382
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018,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.
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.
35 #ifndef GMX_GPU_UTILS_DEVICEBUFFER_H
36 #define GMX_GPU_UTILS_DEVICEBUFFER_H
38 /*! \libinternal \file
39 * \brief Implements the logic for handling of DeviceBuffer types in OpenCL/CUDA.
40 * Can only be included on GPU build paths.
42 * \author Aleksei Iupinov <a.yupinov@gmail.com>
44 * \inlibraryapi
47 #include "config.h"
49 #include "gromacs/gpu_utils/devicebuffer_datatype.h"
50 #include "gromacs/utility/gmxassert.h"
51 #include "gromacs/utility/smalloc.h" // TODO: this is only for over_alloc_large
53 #if GMX_GPU_CUDA
54 # include "gromacs/gpu_utils/devicebuffer.cuh"
55 #elif GMX_GPU_OPENCL
56 # include "gromacs/gpu_utils/devicebuffer_ocl.h"
57 #elif GMX_GPU_SYCL
58 # include "gromacs/gpu_utils/devicebuffer_sycl.h"
59 #else
60 # error "devicebuffer.h included on non-GPU build!"
61 #endif
63 /*! \brief
64 * Reallocates the device-side buffer.
66 * Reallocates the device-side memory pointed by \p buffer.
67 * Allocation is buffered and therefore freeing is only needed
68 * if the previously allocated space is not enough.
69 * \p currentNumValues and \p currentMaxNumValues are updated.
70 * TODO: \p currentNumValues, \p currentMaxNumValues, \p deviceContext
71 * should all be encapsulated in a host-side class together with the buffer.
73 * \tparam ValueType Raw value type of the \p buffer.
74 * \param[in,out] buffer Pointer to the device-side buffer
75 * \param[in] numValues Number of values to accommodate.
76 * \param[in,out] currentNumValues The pointer to the buffer's number of values.
77 * \param[in,out] currentMaxNumValues The pointer to the buffer's capacity.
78 * \param[in] deviceContext The buffer's device context.
80 template<typename ValueType>
81 void reallocateDeviceBuffer(DeviceBuffer<ValueType>* buffer,
82 size_t numValues,
83 int* currentNumValues,
84 int* currentMaxNumValues,
85 const DeviceContext& deviceContext)
87 GMX_ASSERT(buffer, "needs a buffer pointer");
88 GMX_ASSERT(currentNumValues, "needs a size pointer");
89 GMX_ASSERT(currentMaxNumValues, "needs a capacity pointer");
91 /* reallocate only if the data does not fit */
92 if (static_cast<int>(numValues) > *currentMaxNumValues)
94 if (*currentMaxNumValues >= 0)
96 freeDeviceBuffer(buffer);
99 *currentMaxNumValues = over_alloc_large(numValues);
100 allocateDeviceBuffer(buffer, *currentMaxNumValues, deviceContext);
102 /* size could have changed without actual reallocation */
103 *currentNumValues = numValues;
106 #endif