Function hip_sys::hiprt::hipStreamGetCaptureInfo_v2
source · pub unsafe extern "C" fn hipStreamGetCaptureInfo_v2(
stream: *mut ihipStream_t,
captureStatus_out: *mut hipStreamCaptureStatus,
id_out: *mut u64,
graph_out: *mut *mut ihipGraph,
dependencies_out: *mut *const *mut hipGraphNode,
numDependencies_out: *mut usize
) -> hipError_tExpand description
@brief Get stream’s capture state
@param [in] stream - Stream under capture. @param [out] captureStatus_out - returns current status of the capture. @param [out] id_out - unique ID of the capture. @param [in] graph_out - returns the graph being captured into. @param [out] dependencies_out - returns pointer to an array of nodes. @param [out] numDependencies_out - returns size of the array returned in dependencies_out.
@returns #hipSuccess, #hipErrorInvalidValue, #hipErrorStreamCaptureImplicit
@warning : This API is marked as beta, meaning, while this is feature complete, it is still open to changes and may have outstanding issues.