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_enum

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.