A variant of StreamGuard that is specialized for CUDA.
More...
#include <CUDAGuard.h>
A variant of StreamGuard that is specialized for CUDA.
See CUDAGuard for when you can use this.
◆ CUDAStreamGuard() [1/4]
| c10::cuda::CUDAStreamGuard::CUDAStreamGuard |
( |
| ) |
|
|
explicitdelete |
No default constructor, see Note [Omitted default constructor from RAII].
◆ CUDAStreamGuard() [2/4]
| c10::cuda::CUDAStreamGuard::CUDAStreamGuard |
( |
Stream |
stream | ) |
|
|
inlineexplicit |
Set the current CUDA device to the device associated with the passed stream, and set the current CUDA stream on that device to the passed stream.
Errors if the Stream is not a CUDA stream.
◆ CUDAStreamGuard() [3/4]
◆ CUDAStreamGuard() [4/4]
Move is disallowed, as CUDAStreamGuard does not have an uninitialized state, which is required for moves on types with nontrivial destructors.
◆ current_device()
| Device c10::cuda::CUDAStreamGuard::current_device |
( |
| ) |
const |
|
inline |
Returns the most recent CUDA device that was set using this device guard, either from construction, or via set_device/reset_device/set_index.
◆ current_stream()
| CUDAStream c10::cuda::CUDAStreamGuard::current_stream |
( |
| ) |
const |
|
inline |
Returns the most recent CUDA stream that was set using this device guard, either from construction, or via set_stream.
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ original_device()
| Device c10::cuda::CUDAStreamGuard::original_device |
( |
| ) |
const |
|
inline |
Returns the CUDA device that was set at the most recent reset_stream(), or otherwise the device at construction time.
◆ original_stream()
| CUDAStream c10::cuda::CUDAStreamGuard::original_stream |
( |
| ) |
const |
|
inline |
Returns the CUDA stream that was set at the time the guard was constructed.
◆ reset_stream()
| void c10::cuda::CUDAStreamGuard::reset_stream |
( |
Stream |
stream | ) |
|
|
inline |
Resets the currently set stream to the original stream and the currently set device to the original device.
Then, set the current device to the device associated with the passed stream, and set the current stream on that device to the passed stream. Errors if the stream passed is not a CUDA stream.
NOTE: this implementation may skip some stream/device setting if it can prove that it is unnecessary.
WARNING: reset_stream does NOT preserve previously set streams on different devices. If you need to set streams on multiple devices on CUDA, use CUDAMultiStreamGuard instead.
The documentation for this struct was generated from the following file: