vecmem 1.14.0
Loading...
Searching...
No Matches
Classes | Public Member Functions | Static Public Attributes | List of all members
vecmem::cuda::stream_wrapper Class Reference

Wrapper class for cudaStream_t. More...

#include <vecmem/utils/cuda/stream_wrapper.hpp>

Classes

struct  impl
 

Public Member Functions

VECMEM_CUDA_EXPORT stream_wrapper (int device=INVALID_DEVICE)
 Construct a new stream (for the specified device)
 
VECMEM_CUDA_EXPORT stream_wrapper (void *stream)
 Wrap an existing cudaStream_t object.
 
VECMEM_CUDA_EXPORT stream_wrapper (const stream_wrapper &parent)
 Copy constructor.
 
VECMEM_CUDA_EXPORT stream_wrapper (stream_wrapper &&parent)
 Move constructor.
 
VECMEM_CUDA_EXPORT ~stream_wrapper ()
 Destructor.
 
VECMEM_CUDA_EXPORT stream_wrapperoperator= (const stream_wrapper &rhs)
 Copy assignment.
 
VECMEM_CUDA_EXPORT stream_wrapperoperator= (stream_wrapper &&rhs)
 Move assignment.
 
VECMEM_CUDA_EXPORT voidstream () const
 Access a typeless pointer to the managed cudaStream_t object.
 
VECMEM_CUDA_EXPORT void synchronize ()
 Wait for all queued tasks from the stream to complete.
 
VECMEM_CUDA_EXPORT std::string device_name () const
 Get the name of the device that the stream operates on.
 

Static Public Attributes

static constexpr int INVALID_DEVICE = -1
 Invalid/default device identifier.
 

Detailed Description

Wrapper class for cudaStream_t.

It is necessary for passing around CUDA stream objects in code that should not be directly exposed to the CUDA header(s).

Constructor & Destructor Documentation

◆ stream_wrapper()

vecmem::cuda::stream_wrapper::stream_wrapper ( void stream)

Wrap an existing cudaStream_t object.

Without taking ownership of it!


The documentation for this class was generated from the following files: