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

Wrapper class for hipStream_t. More...

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

Classes

struct  impl
 

Public Member Functions

VECMEM_HIP_EXPORT stream_wrapper (int device=INVALID_DEVICE)
 Construct a new stream (for the specified device)
 
VECMEM_HIP_EXPORT stream_wrapper (void *stream)
 Wrap an existing hipStream_t object.
 
VECMEM_HIP_EXPORT stream_wrapper (const stream_wrapper &parent)
 Copy constructor.
 
VECMEM_HIP_EXPORT stream_wrapper (stream_wrapper &&parent)
 Move constructor.
 
VECMEM_HIP_EXPORT ~stream_wrapper ()
 Destructor.
 
VECMEM_HIP_EXPORT stream_wrapperoperator= (const stream_wrapper &rhs)
 Copy assignment.
 
VECMEM_HIP_EXPORT stream_wrapperoperator= (stream_wrapper &&rhs)
 Move assignment.
 
VECMEM_HIP_EXPORT voidstream () const
 Access a typeless pointer to the managed hipStream_t object.
 
VECMEM_HIP_EXPORT void synchronize ()
 Wait for all queued tasks from the stream to complete.
 
VECMEM_HIP_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 hipStream_t.

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

Constructor & Destructor Documentation

◆ stream_wrapper()

vecmem::hip::stream_wrapper::stream_wrapper ( void stream)

Wrap an existing hipStream_t object.

Without taking ownership of it!


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