Merge branch 'origin/release-2020' into master
[alexxy/gromacs.git] / src / gromacs / gpu_utils / cudautils.cuh
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2014,2015,2016,2017 by the GROMACS development team.
5  * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
6  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7  * and including many others, as listed in the AUTHORS file in the
8  * top-level source directory and at http://www.gromacs.org.
9  *
10  * GROMACS is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public License
12  * as published by the Free Software Foundation; either version 2.1
13  * of the License, or (at your option) any later version.
14  *
15  * GROMACS is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with GROMACS; if not, see
22  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
24  *
25  * If you want to redistribute modifications to GROMACS, please
26  * consider that scientific software is very special. Version
27  * control is crucial - bugs must be traceable. We will be happy to
28  * consider code for inclusion in the official distribution, but
29  * derived work must not be called official GROMACS. Details are found
30  * in the README & COPYING files - if they are missing, get the
31  * official version at http://www.gromacs.org.
32  *
33  * To help us fund GROMACS development, we humbly ask that you cite
34  * the research papers on the package. Check out http://www.gromacs.org.
35  */
36 #ifndef GMX_GPU_UTILS_CUDAUTILS_CUH
37 #define GMX_GPU_UTILS_CUDAUTILS_CUH
38
39 #include <stdio.h>
40
41 #include <array>
42 #include <string>
43
44 #include "gromacs/gpu_utils/gputraits.cuh"
45 #include "gromacs/math/vec.h"
46 #include "gromacs/math/vectypes.h"
47 #include "gromacs/utility/exceptions.h"
48 #include "gromacs/utility/fatalerror.h"
49 #include "gromacs/utility/gmxassert.h"
50 #include "gromacs/utility/stringutil.h"
51
52 namespace gmx
53 {
54 namespace
55 {
56
57 /*! \brief Helper function to ensure no pending error silently
58  * disrupts error handling.
59  *
60  * Asserts in a debug build if an unhandled error is present. Issues a
61  * warning at run time otherwise.
62  *
63  * \todo This is similar to CU_CHECK_PREV_ERR, which should be
64  * consolidated.
65  */
66 static inline void ensureNoPendingCudaError(const char* errorMessage)
67 {
68     // Ensure there is no pending error that would otherwise affect
69     // the behaviour of future error handling.
70     cudaError_t stat = cudaGetLastError();
71     if (stat == cudaSuccess)
72     {
73         return;
74     }
75
76     // If we would find an error in a release build, we do not know
77     // what is appropriate to do about it, so assert only for debug
78     // builds.
79     auto fullMessage = formatString(
80             "%s An unhandled error from a previous CUDA operation was detected. %s: %s",
81             errorMessage, cudaGetErrorName(stat), cudaGetErrorString(stat));
82     GMX_ASSERT(stat == cudaSuccess, fullMessage.c_str());
83     // TODO When we evolve a better logging framework, use that
84     // for release-build error reporting.
85     gmx_warning("%s", fullMessage.c_str());
86 }
87
88 } // namespace
89 } // namespace gmx
90
91 enum class GpuApiCallBehavior;
92
93 /* TODO error checking needs to be rewritten. We have 2 types of error checks needed
94    based on where they occur in the code:
95    - non performance-critical: these errors are unsafe to be ignored and must be
96      _always_ checked for, e.g. initializations
97    - performance critical: handling errors might hurt performance so care need to be taken
98      when/if we should check for them at all, e.g. in cu_upload_X. However, we should be
99      able to turn the check for these errors on!
100
101    Probably we'll need two sets of the macros below...
102
103  */
104 #define CHECK_CUDA_ERRORS
105
106 #ifdef CHECK_CUDA_ERRORS
107
108 /*! Check for CUDA error on the return status of a CUDA RT API call. */
109 #    define CU_RET_ERR(status, msg)                                            \
110         do                                                                     \
111         {                                                                      \
112             if (status != cudaSuccess)                                         \
113             {                                                                  \
114                 gmx_fatal(FARGS, "%s: %s\n", msg, cudaGetErrorString(status)); \
115             }                                                                  \
116         } while (0)
117
118 /*! Check for any previously occurred uncaught CUDA error. */
119 #    define CU_CHECK_PREV_ERR()                                                           \
120         do                                                                                \
121         {                                                                                 \
122             cudaError_t _CU_CHECK_PREV_ERR_status = cudaGetLastError();                   \
123             if (_CU_CHECK_PREV_ERR_status != cudaSuccess)                                 \
124             {                                                                             \
125                 gmx_warning(                                                              \
126                         "Just caught a previously occurred CUDA error (%s), will try to " \
127                         "continue.",                                                      \
128                         cudaGetErrorString(_CU_CHECK_PREV_ERR_status));                   \
129             }                                                                             \
130         } while (0)
131
132 #else /* CHECK_CUDA_ERRORS */
133
134 #    define CU_RET_ERR(status, msg) \
135         do                          \
136         {                           \
137         } while (0)
138 #    define CU_CHECK_PREV_ERR() \
139         do                      \
140         {                       \
141         } while (0)
142
143 #endif /* CHECK_CUDA_ERRORS */
144
145 // TODO: the 2 functions below are pretty much a constructor/destructor of a simple
146 // GPU table object. There is also almost self-contained fetchFromParamLookupTable()
147 // in cuda_kernel_utils.cuh. They could all live in a separate class/struct file.
148
149 /*! \brief Add a triplets stored in a float3 to an rvec variable.
150  *
151  * \param[out]  a Rvec to increment
152  * \param[in]   b Float triplet to increment with.
153  */
154 static inline void rvec_inc(rvec a, const float3 b)
155 {
156     rvec tmp = { b.x, b.y, b.z };
157     rvec_inc(a, tmp);
158 }
159
160 /*! \brief  Returns true if all tasks in \p s have completed.
161  *
162  *  \param[in] deviceStream CUDA stream to check.
163  *
164  *  \returns True if all tasks enqueued in the stream \p deviceStream (at the time of this call) have completed.
165  */
166 static inline bool haveStreamTasksCompleted(const DeviceStream& deviceStream)
167 {
168     cudaError_t stat = cudaStreamQuery(deviceStream.stream());
169
170     if (stat == cudaErrorNotReady)
171     {
172         // work is still in progress in the stream
173         return false;
174     }
175
176     GMX_ASSERT(stat != cudaErrorInvalidResourceHandle, "Stream idnetifier not valid");
177
178     // cudaSuccess and cudaErrorNotReady are the expected return values
179     CU_RET_ERR(stat, "Unexpected cudaStreamQuery failure");
180
181     GMX_ASSERT(stat == cudaSuccess,
182                "Values other than cudaSuccess should have been explicitly handled");
183
184     return true;
185 }
186
187 /* Kernel launch helpers */
188
189 /*! \brief
190  * A function for setting up a single CUDA kernel argument.
191  * This is the tail of the compile-time recursive function below.
192  * It has to be seen by the compiler first.
193  *
194  * \tparam        totalArgsCount  Number of the kernel arguments
195  * \tparam        KernelPtr       Kernel function handle type
196  * \param[in]     argIndex        Index of the current argument
197  */
198 template<size_t totalArgsCount, typename KernelPtr>
199 void prepareGpuKernelArgument(KernelPtr /*kernel*/,
200                               std::array<void*, totalArgsCount>* /* kernelArgsPtr */,
201                               size_t gmx_used_in_debug argIndex)
202 {
203     GMX_ASSERT(argIndex == totalArgsCount, "Tail expansion");
204 }
205
206 /*! \brief
207  * Compile-time recursive function for setting up a single CUDA kernel argument.
208  * This function copies a kernel argument pointer \p argPtr into \p kernelArgsPtr,
209  * and calls itself on the next argument, eventually calling the tail function above.
210  *
211  * \tparam        CurrentArg      Type of the current argument
212  * \tparam        RemainingArgs   Types of remaining arguments after the current one
213  * \tparam        totalArgsCount  Number of the kernel arguments
214  * \tparam        KernelPtr       Kernel function handle type
215  * \param[in]     kernel          Kernel function handle
216  * \param[in,out] kernelArgsPtr   Pointer to the argument array to be filled in
217  * \param[in]     argIndex        Index of the current argument
218  * \param[in]     argPtr          Pointer to the current argument
219  * \param[in]     otherArgsPtrs   Pack of pointers to arguments remaining to process after the current one
220  */
221 template<typename CurrentArg, typename... RemainingArgs, size_t totalArgsCount, typename KernelPtr>
222 void prepareGpuKernelArgument(KernelPtr                          kernel,
223                               std::array<void*, totalArgsCount>* kernelArgsPtr,
224                               size_t                             argIndex,
225                               const CurrentArg*                  argPtr,
226                               const RemainingArgs*... otherArgsPtrs)
227 {
228     (*kernelArgsPtr)[argIndex] = (void*)argPtr;
229     prepareGpuKernelArgument(kernel, kernelArgsPtr, argIndex + 1, otherArgsPtrs...);
230 }
231
232 /*! \brief
233  * A wrapper function for setting up all the CUDA kernel arguments.
234  * Calls the recursive functions above.
235  *
236  * \tparam    KernelPtr       Kernel function handle type
237  * \tparam    Args            Types of all the kernel arguments
238  * \param[in] kernel          Kernel function handle
239  * \param[in] argsPtrs        Pointers to all the kernel arguments
240  * \returns A prepared parameter pack to be used with launchGpuKernel() as the last argument.
241  */
242 template<typename KernelPtr, typename... Args>
243 std::array<void*, sizeof...(Args)> prepareGpuKernelArguments(KernelPtr kernel,
244                                                              const KernelLaunchConfig& /*config */,
245                                                              const Args*... argsPtrs)
246 {
247     std::array<void*, sizeof...(Args)> kernelArgs;
248     prepareGpuKernelArgument(kernel, &kernelArgs, 0, argsPtrs...);
249     return kernelArgs;
250 }
251
252 /*! \brief Launches the CUDA kernel and handles the errors.
253  *
254  * \tparam    Args            Types of all the kernel arguments
255  * \param[in] kernel          Kernel function handle
256  * \param[in] config          Kernel configuration for launching
257  * \param[in] deviceStream    GPU stream to launch kernel in
258  * \param[in] kernelName      Human readable kernel description, for error handling only
259  * \param[in] kernelArgs      Array of the pointers to the kernel arguments, prepared by
260  * prepareGpuKernelArguments() \throws gmx::InternalError on kernel launch failure
261  */
262 template<typename... Args>
263 void launchGpuKernel(void (*kernel)(Args...),
264                      const KernelLaunchConfig& config,
265                      const DeviceStream&       deviceStream,
266                      CommandEvent* /*timingEvent */,
267                      const char*                               kernelName,
268                      const std::array<void*, sizeof...(Args)>& kernelArgs)
269 {
270     dim3 blockSize(config.blockSize[0], config.blockSize[1], config.blockSize[2]);
271     dim3 gridSize(config.gridSize[0], config.gridSize[1], config.gridSize[2]);
272     cudaLaunchKernel((void*)kernel, gridSize, blockSize, const_cast<void**>(kernelArgs.data()),
273                      config.sharedMemorySize, deviceStream.stream());
274
275     cudaError_t status = cudaGetLastError();
276     if (cudaSuccess != status)
277     {
278         const std::string errorMessage =
279                 "GPU kernel (" + std::string(kernelName)
280                 + ") failed to launch: " + std::string(cudaGetErrorString(status));
281         GMX_THROW(gmx::InternalError(errorMessage));
282     }
283 }
284
285 #endif