pub unsafe extern "C" fn hipGraphAddEmptyNode(
pGraphNode: *mut hipGraphNode_t,
graph: hipGraph_t,
pDependencies: *const hipGraphNode_t,
numDependencies: usize,
) -> hipError_t
Expand description
@brief Creates an empty node and adds it to a graph.
@param [out] pGraphNode - pointer to the graph node to create and add to the graph. @param [in] graph - instane of the graph the node is add to. @param [in] pDependencies - const pointer to the node dependenties. @param [in] numDependencies - the number of dependencies. @returns #hipSuccess, #hipErrorInvalidValue @warning : This API is marked as beta, meaning, while this is feature complete, it is still open to changes and may have outstanding issues.