pub unsafe extern "C" fn hipGraphNodeGetDependentNodes(
node: hipGraphNode_t,
pDependentNodes: *mut hipGraphNode_t,
pNumDependentNodes: *mut usize,
) -> hipError_tExpand description
@brief Returns a node’s dependent nodes.
@param [in] node - Graph node to get the dependent nodes from. @param [out] pDependentNodes - Pointer to return the graph dependent nodes. @param [out] pNumDependentNodes - Returns the number of graph node dependent nodes. @returns #hipSuccess, #hipErrorInvalidValue
pDependentNodes may be NULL, in which case this function will return the number of dependent nodes in pNumDependentNodes. Otherwise, pNumDependentNodes entries will be filled in. If pNumDependentNodes is higher than the actual number of dependent nodes, the remaining entries in pDependentNodes will be set to NULL, and the number of nodes actually obtained will be returned in pNumDependentNodes.