vecmem 1.14.0
|
Class with RAII mechanism for selecting a HIP device. More...
#include </home/runner/work/vecmem/vecmem/hip/src/utils/select_device.hpp>
Public Member Functions | |
select_device (int device) | |
Constructs the object, switching the current HIP device to the requested number. | |
~select_device () | |
Deconstructs the object, returning to the device that was selected before constructing this object. | |
int | device () const |
Identifier for the device being seleced. | |
Class with RAII mechanism for selecting a HIP device.
This class can be used to select HIP devices in a modern C++ way, with scope safety. When an object of this class is constructed, it will switch the thread-local device selector to the device number specified in the constructor argument. When this object goes out of scope or gets destructed in any other way, it will restore the device that was set before the object was constructed. This allows us to easily write methods with few side-effects.
vecmem::hip::details::select_device::select_device | ( | int | device | ) |
Constructs the object, switching the current HIP device to the requested number.
[in] | device | The HIP device number to switch to. |