#[repr(C)]pub struct cudaGraphExecUpdateResultInfo_st {
pub result: cudaGraphExecUpdateResult,
pub errorNode: cudaGraphNode_t,
pub errorFromNode: cudaGraphNode_t,
}
Expand description
Result information returned by cudaGraphExecUpdate
Fields§
§result: cudaGraphExecUpdateResult
Gives more specific detail when a cuda graph update fails.
errorNode: cudaGraphNode_t
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: cudaGraphNode_t
The from node of error edge when the topologies do not match. Otherwise NULL.
Trait Implementations§
Source§impl Clone for cudaGraphExecUpdateResultInfo_st
impl Clone for cudaGraphExecUpdateResultInfo_st
Source§fn clone(&self) -> cudaGraphExecUpdateResultInfo_st
fn clone(&self) -> cudaGraphExecUpdateResultInfo_st
Returns a duplicate 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 moreimpl Copy for cudaGraphExecUpdateResultInfo_st
Auto Trait Implementations§
impl Freeze for cudaGraphExecUpdateResultInfo_st
impl RefUnwindSafe for cudaGraphExecUpdateResultInfo_st
impl !Send for cudaGraphExecUpdateResultInfo_st
impl !Sync for cudaGraphExecUpdateResultInfo_st
impl Unpin for cudaGraphExecUpdateResultInfo_st
impl UnwindSafe for cudaGraphExecUpdateResultInfo_st
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