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