pub type cudaGraphExecUpdateResultInfo = cudaGraphExecUpdateResultInfo_st;
Expand description
Result information returned by cudaGraphExecUpdate
Aliased Type§
#[repr(C)]pub struct cudaGraphExecUpdateResultInfo {
pub result: cudaGraphExecUpdateResult,
pub errorNode: *mut CUgraphNode_st,
pub errorFromNode: *mut CUgraphNode_st,
}
Fields§
§result: cudaGraphExecUpdateResult
Gives more specific detail when a cuda graph update fails.
errorNode: *mut CUgraphNode_st
The “to node” of the error edge when the topologies do not match. The error node when the error is associated with a specific node. NULL when the error is generic.
errorFromNode: *mut CUgraphNode_st
The from node of error edge when the topologies do not match. Otherwise NULL.