Split simulationWork.useGpuBufferOps into separate x and f flags
[alexxy/gromacs.git] / src / gromacs / gpu_utils / device_stream.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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 #ifndef GMX_GPU_UTILS_DEVICE_STREAM_H
36 #define GMX_GPU_UTILS_DEVICE_STREAM_H
37
38 /*! \libinternal \file
39  *
40  * \brief Declarations for DeviceStream class.
41  *
42  * \author Artem Zhmurov <zhmurov@gmail.com>
43  * \author Mark Abraham <mark.j.abraham@gmail.com>
44  *
45  * \ingroup module_gpu_utils
46  * \inlibraryapi
47  */
48
49 #include "config.h"
50
51 #include <memory>
52
53 #if GMX_GPU_CUDA
54 #    include <cuda_runtime.h>
55
56 #elif GMX_GPU_OPENCL
57 #    include "gromacs/gpu_utils/gmxopencl.h"
58 #elif GMX_GPU_SYCL
59 #    include "gromacs/gpu_utils/gmxsycl.h"
60 #endif
61
62 #include "gromacs/utility/classhelpers.h"
63
64 struct DeviceInformation;
65 class DeviceContext;
66
67 //! Enumeration describing the priority with which a stream operates.
68 enum class DeviceStreamPriority : int
69 {
70     //! High-priority stream
71     High,
72     //! Normal-priority stream
73     Normal,
74     //! Conventional termination of the enumeration
75     Count
76 };
77
78 /*! \libinternal \brief Declaration of platform-agnostic device stream/queue.
79  *
80  * The command stream (or command queue) is a sequence of operations that are executed
81  * in they order they were issued. Several streams may co-exist to represent concurrency.
82  * This class declares the interfaces, that are exposed to platform-agnostic code and
83  * it should be implemented for each compute architecture (e.g. CUDA and OpenCL).
84  *
85  * Destruction of the \p DeviceStream calls the destructor of the underlying low-level
86  * stream/queue, hence should only be called when the stream is no longer needed. To
87  * prevent accidental stream destruction, while copying or moving a \p DeviceStream
88  * object, copy and move constructors and copy and move assignments are not allowed
89  * and the \p DeviceStream object should be passed as a pointer or constant reference.
90  *
91  */
92 class DeviceStream
93 {
94 public:
95     /*! \brief Construct and init.
96      *
97      * \param[in] deviceContext  Device context (only used in OpenCL and SYCL).
98      * \param[in] priority       Stream priority: high or normal (only used in CUDA).
99      * \param[in] useTiming      If the timing should be enabled (only used in OpenCL and SYCL).
100      */
101     DeviceStream(const DeviceContext& deviceContext, DeviceStreamPriority priority, bool useTiming);
102
103     //! Destructor
104     // NOLINTNEXTLINE(performance-trivially-destructible)
105     ~DeviceStream();
106
107     /*! \brief Check if the underlying stream is valid.
108      *
109      *  \returns Whether the stream is valid (false in CPU-only builds).
110      */
111     bool isValid() const;
112
113     //! Synchronize the stream
114     void synchronize() const;
115
116 #if GMX_GPU_CUDA
117
118     //! Getter
119     cudaStream_t stream() const;
120
121 private:
122     cudaStream_t stream_ = nullptr;
123 #elif GMX_GPU_SYCL
124
125     /*! \brief
126      * Getter for the underlying \c cl::sycl:queue object.
127      *
128      * Returns a copy instead of const-reference, because it's impossible to submit to or wait
129      * on a \c const cl::sycl::queue. SYCL standard guarantees that operating on copy is
130      * equivalent to operating on the original queue.
131      *
132      * \throws std::bad_optional_access if the stream is not valid.
133      *
134      * \returns A copy of the internal \c cl::sycl:queue.
135      */
136     cl::sycl::queue stream() const { return cl::sycl::queue(stream_); }
137     //! Getter. Can throw std::bad_optional_access if the stream is not valid.
138     cl::sycl::queue& stream() { return stream_; }
139     //! Synchronize the stream. Non-const version of \c ::synchronize() for SYCL that does not do unnecessary copying.
140     void synchronize();
141
142 private:
143     cl::sycl::queue stream_;
144 #elif GMX_GPU_OPENCL || defined DOXYGEN
145
146     //! Getter
147     cl_command_queue stream() const;
148
149 private:
150     cl_command_queue stream_ = nullptr;
151
152 #endif
153
154     GMX_DISALLOW_COPY_MOVE_AND_ASSIGN(DeviceStream);
155 };
156
157 #endif // GMX_GPU_UTILS_DEVICE_STREAM_H