Fix compiler warnings introduced in 8f6ea9eb6c (!1865)
[alexxy/gromacs.git] / src / gromacs / gpu_utils / device_event.cuh
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2018,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 /*! \libinternal \file
36  *  \brief Implements a DeviceEvent class for CUDA.
37  *
38  *  \author Aleksei Iupinov <a.yupinov@gmail.com>
39  *  \author Andrey Alekseenko <al42and@gmail.com>
40  *  \inlibraryapi
41  */
42 #ifndef GMX_GPU_UTILS_DEVICE_EVENT_CUH
43 #define GMX_GPU_UTILS_DEVICE_EVENT_CUH
44
45 #include "gromacs/gpu_utils/cudautils.cuh"
46 #include "gromacs/gpu_utils/device_stream.h"
47 #include "gromacs/gpu_utils/gputraits.cuh"
48 #include "gromacs/utility/gmxassert.h"
49
50 #ifndef DOXYGEN
51
52 class DeviceEvent
53 {
54 public:
55     DeviceEvent()
56     {
57         cudaError_t stat = cudaEventCreateWithFlags(&event_, cudaEventDisableTiming);
58         if (stat != cudaSuccess)
59         {
60             GMX_THROW(gmx::InternalError("cudaEventCreate failed: " + gmx::getDeviceErrorString(stat)));
61         }
62     }
63     ~DeviceEvent() { cudaEventDestroy(event_); }
64     // Disable copy, move, and assignment. Move can be allowed, but not needed yet.
65     DeviceEvent& operator=(const DeviceEvent&) = delete;
66     DeviceEvent(const DeviceEvent&)            = delete;
67     DeviceEvent& operator=(DeviceEvent&&) = delete;
68     DeviceEvent(DeviceEvent&&)            = delete;
69
70     /*! \brief Marks the synchronization point in the \p stream.
71      * Should be followed by waitForEvent().
72      */
73     inline void mark(const DeviceStream& deviceStream)
74     {
75         cudaError_t stat = cudaEventRecord(event_, deviceStream.stream());
76         if (stat != cudaSuccess)
77         {
78             GMX_THROW(gmx::InternalError("cudaEventRecord failed: " + gmx::getDeviceErrorString(stat)));
79         }
80     }
81     //! Synchronizes the host thread on the marked event.
82     inline void wait()
83     {
84         cudaError_t gmx_used_in_debug stat = cudaEventSynchronize(event_);
85         if (stat != cudaSuccess)
86         {
87             GMX_THROW(gmx::InternalError("cudaEventSynchronize failed: " + gmx::getDeviceErrorString(stat)));
88         }
89     }
90     //! Checks the completion of the underlying event.
91     inline bool isReady()
92     {
93         cudaError_t stat = cudaEventQuery(event_);
94         if (stat != cudaSuccess && stat != cudaErrorNotReady)
95         {
96             GMX_THROW(gmx::InternalError("cudaEventQuery failed: " + gmx::getDeviceErrorString(stat)));
97         }
98         return (stat == cudaSuccess);
99     }
100     //! Enqueues a wait for the recorded event in stream \p stream
101     inline void enqueueWait(const DeviceStream& deviceStream)
102     {
103         cudaError_t stat = cudaStreamWaitEvent(deviceStream.stream(), event_, 0);
104         if (stat != cudaSuccess)
105         {
106             GMX_THROW(gmx::InternalError("cudaStreamWaitEvent failed: " + gmx::getDeviceErrorString(stat)));
107         }
108     }
109     //! Reset the event (not needed in CUDA)
110     inline void reset() {}
111
112 private:
113     cudaEvent_t event_;
114 };
115
116 #endif
117
118 #endif