Type Alias CUgraphExecUpdateResultInfo_v1

Source
pub type CUgraphExecUpdateResultInfo_v1 = CUgraphExecUpdateResultInfo_st;
Expand description

Result information returned by cuGraphExecUpdate

Aliased Type§

#[repr(C)]
pub struct CUgraphExecUpdateResultInfo_v1 { 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.