#[non_exhaustive]#[repr(u32)]pub enum cudaGraphDebugDotFlags {
cudaGraphDebugDotFlagsVerbose = 1,
cudaGraphDebugDotFlagsKernelNodeParams = 4,
cudaGraphDebugDotFlagsMemcpyNodeParams = 8,
cudaGraphDebugDotFlagsMemsetNodeParams = 16,
cudaGraphDebugDotFlagsHostNodeParams = 32,
cudaGraphDebugDotFlagsEventNodeParams = 64,
cudaGraphDebugDotFlagsExtSemasSignalNodeParams = 128,
cudaGraphDebugDotFlagsExtSemasWaitNodeParams = 256,
cudaGraphDebugDotFlagsKernelNodeAttributes = 512,
cudaGraphDebugDotFlagsHandles = 1_024,
}Expand description
CUDA Graph debug write options
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
cudaGraphDebugDotFlagsVerbose = 1
< Output all debug data as if every debug flag is enabled
cudaGraphDebugDotFlagsKernelNodeParams = 4
< Adds cudaKernelNodeParams to output
cudaGraphDebugDotFlagsMemcpyNodeParams = 8
< Adds cudaMemcpy3DParms to output
cudaGraphDebugDotFlagsMemsetNodeParams = 16
< Adds cudaMemsetParams to output
cudaGraphDebugDotFlagsHostNodeParams = 32
< Adds cudaHostNodeParams to output
cudaGraphDebugDotFlagsEventNodeParams = 64
< Adds cudaEvent_t handle from record and wait nodes to output
cudaGraphDebugDotFlagsExtSemasSignalNodeParams = 128
< Adds cudaExternalSemaphoreSignalNodeParams values to output
cudaGraphDebugDotFlagsExtSemasWaitNodeParams = 256
< Adds cudaExternalSemaphoreWaitNodeParams to output
cudaGraphDebugDotFlagsKernelNodeAttributes = 512
< Adds cudaKernelNodeAttrID values to output
cudaGraphDebugDotFlagsHandles = 1_024
< Adds node handles and every kernel function handle to output
Trait Implementations§
source§impl Clone for cudaGraphDebugDotFlags
impl Clone for cudaGraphDebugDotFlags
source§fn clone(&self) -> cudaGraphDebugDotFlags
fn clone(&self) -> cudaGraphDebugDotFlags
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for cudaGraphDebugDotFlags
impl Debug for cudaGraphDebugDotFlags
source§impl Hash for cudaGraphDebugDotFlags
impl Hash for cudaGraphDebugDotFlags
source§impl PartialEq for cudaGraphDebugDotFlags
impl PartialEq for cudaGraphDebugDotFlags
source§fn eq(&self, other: &cudaGraphDebugDotFlags) -> bool
fn eq(&self, other: &cudaGraphDebugDotFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for cudaGraphDebugDotFlags
impl Eq for cudaGraphDebugDotFlags
impl StructuralPartialEq for cudaGraphDebugDotFlags
Auto Trait Implementations§
impl RefUnwindSafe for cudaGraphDebugDotFlags
impl Send for cudaGraphDebugDotFlags
impl Sync for cudaGraphDebugDotFlags
impl Unpin for cudaGraphDebugDotFlags
impl UnwindSafe for cudaGraphDebugDotFlags
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more