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