pub unsafe extern "C" fn hipGraphAddNode(
pGraphNode: *mut hipGraphNode_t,
graph: hipGraph_t,
pDependencies: *const hipGraphNode_t,
numDependencies: usize,
nodeParams: *mut hipGraphNodeParams,
) -> hipError_tExpand description
@brief Creates a kernel execution node and adds it to a graph.
@param [out] pGraphNode - Pointer to kernel graph node that is created. @param [in] graph - Instance of graph to add the created node to. @param [in] pDependencies - Pointer to the dependencies on the kernel execution node. @param [in] numDependencies - Number of dependencies. @param [in] nodeParams - Pointer to the node parameters. @returns #hipSuccess, #hipErrorInvalidValue.