Skip to main content

CUstreamCaptureMode

Type Alias CUstreamCaptureMode 

Source
pub type CUstreamCaptureMode = u32;
Expand description

Capture mode passed to cuStreamBeginCapture_v2.

Mirrors the CUDA CUstreamCaptureMode enum: GLOBAL (0) installs a process-wide capture so unsafe API calls from any thread are detected, THREAD_LOCAL (1) restricts that detection to the capturing thread, and RELAXED (2) disables it entirely.