vecmem 1.14.0
Loading...
Searching...
No Matches
stream_wrapper.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2025 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
10#include "vecmem/vecmem_cuda_export.hpp"
11
12// System include(s).
13#include <memory>
14#include <string>
15
16namespace vecmem {
17namespace cuda {
18
25
26public:
28 static constexpr int INVALID_DEVICE = -1;
29
32 stream_wrapper(int device = INVALID_DEVICE);
39
42 stream_wrapper(const stream_wrapper& parent);
46
50
57
60 void* stream() const;
61
64 void synchronize();
65
68 std::string device_name() const;
69
70private:
72 struct impl;
74 std::unique_ptr<impl> m_impl;
75
76}; // class stream_wrapper
77
78} // namespace cuda
79} // namespace vecmem
Wrapper class for cudaStream_t.
Definition stream_wrapper.hpp:24
VECMEM_CUDA_EXPORT stream_wrapper & operator=(stream_wrapper &&rhs)
Move assignment.
VECMEM_CUDA_EXPORT stream_wrapper & operator=(const stream_wrapper &rhs)
Copy assignment.
Definition stream_wrapper.cpp:99
VECMEM_CUDA_EXPORT void * stream() const
Access a typeless pointer to the managed cudaStream_t object.
Definition stream_wrapper.cpp:109
static constexpr int INVALID_DEVICE
Invalid/default device identifier.
Definition stream_wrapper.hpp:28
VECMEM_CUDA_EXPORT stream_wrapper(stream_wrapper &&parent)
Move constructor.
VECMEM_CUDA_EXPORT std::string device_name() const
Get the name of the device that the stream operates on.
Definition stream_wrapper.cpp:120
VECMEM_CUDA_EXPORT ~stream_wrapper()
Destructor.
VECMEM_CUDA_EXPORT void synchronize()
Wait for all queued tasks from the stream to complete.
Definition stream_wrapper.cpp:114
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
Definition stream_wrapper.cpp:57