Remove two-stage initialization in DeviceStream
[gromacs.git] / src / gromacs / gpu_utils / device_stream.h
blob1a662db07d6d52ed73225d6e3b82c3c93d92cb21
1 /*
2 * This file is part of the GROMACS molecular simulation package.
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.
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_DEVICE_STREAM_H
36 #define GMX_GPU_UTILS_DEVICE_STREAM_H
38 /*! \libinternal \file
40 * \brief Declarations for DeviceStream class.
42 * \author Artem Zhmurov <zhmurov@gmail.com>
43 * \author Mark Abraham <mark.j.abraham@gmail.com>
45 * \ingroup module_gpu_utils
46 * \inlibraryapi
49 #include "config.h"
51 #if GMX_GPU_CUDA
52 # include <cuda_runtime.h>
54 #elif GMX_GPU_OPENCL
55 # include "gromacs/gpu_utils/gmxopencl.h"
56 #endif
57 #include "gromacs/utility/classhelpers.h"
59 struct DeviceInformation;
60 class DeviceContext;
62 //! Enumeration describing the priority with which a stream operates.
63 enum class DeviceStreamPriority : int
65 //! High-priority stream
66 High,
67 //! Normal-priority stream
68 Normal,
69 //! Conventional termination of the enumeration
70 Count
73 /*! \libinternal \brief Declaration of platform-agnostic device stream/queue.
75 * The command stream (or command queue) is a sequence of operations that are executed
76 * in they order they were issued. Several streams may co-exist to represent concurency.
77 * This class declares the interfaces, that are exposed to platform-agnostic code and
78 * it should be implemented for each compute architecture (e.g. CUDA and OpenCL).
80 * Destruction of the \p DeviceStream calls the destructor of the underlying low-level
81 * stream/queue, hence should only be called when the stream is no longer needed. To
82 * prevent accidental stream destruction, while copying or moving a \p DeviceStream
83 * object, copy and move constructors and copy and move assignments are not allowed
84 * and the \p DeviceStream object should be passed as a pointer or constant reference.
87 class DeviceStream
89 public:
90 /*! \brief Construct and init.
92 * \param[in] deviceContext Device context (only used in OpenCL).
93 * \param[in] priority Stream priority: high or normal (only used in CUDA).
94 * \param[in] useTiming If the timing should be enabled (only used in OpenCL).
96 DeviceStream(const DeviceContext& deviceContext, DeviceStreamPriority priority, bool useTiming);
98 //! Destructor
99 ~DeviceStream();
101 /*! \brief Check if the underlying stream is valid.
103 * \returns Whether the stream is valid (false in CPU-only builds).
105 bool isValid() const;
107 //! Synchronize the steam
108 void synchronize() const;
110 #if GMX_GPU_CUDA
112 //! Getter
113 cudaStream_t stream() const;
114 //! Setter (temporary, will be removed in the follow-up)
115 void setStream(cudaStream_t stream) { stream_ = stream; }
117 private:
118 cudaStream_t stream_ = nullptr;
120 #elif GMX_GPU_OPENCL || defined DOXYGEN
122 //! Getter
123 cl_command_queue stream() const;
124 //! Setter (temporary, will be removed in the follow-up)
125 void setStream(cl_command_queue stream) { stream_ = stream; }
127 private:
128 cl_command_queue stream_ = nullptr;
130 #endif
132 GMX_DISALLOW_COPY_MOVE_AND_ASSIGN(DeviceStream);
135 #endif // GMX_GPU_UTILS_DEVICE_STREAM_H