Type Alias kn_cuda_sys::bindings::CUgraphExecUpdateResultInfo
source · pub type CUgraphExecUpdateResultInfo = CUgraphExecUpdateResultInfo_v1;Expand description
Result information returned by cuGraphExecUpdate
Aliased Type§
struct CUgraphExecUpdateResultInfo {
pub result: CUgraphExecUpdateResult_enum,
pub errorNode: *mut CUgraphNode_st,
pub errorFromNode: *mut CUgraphNode_st,
}Fields§
§result: CUgraphExecUpdateResult_enumGives more specific detail when a cuda graph update fails.
errorNode: *mut CUgraphNode_stThe “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_stThe from node of error edge when the topologies do not match. Otherwise NULL.