pub unsafe extern "C" fn hipDrvGraphAddMemcpyNode(
phGraphNode: *mut hipGraphNode_t,
hGraph: hipGraph_t,
dependencies: *const hipGraphNode_t,
numDependencies: usize,
copyParams: *const HIP_MEMCPY3D,
ctx: hipCtx_t,
) -> hipError_t
Expand description
@brief Creates a memcpy node and adds it to a graph.
@param [out] phGraphNode - pointer to graph node to create. @param [in] hGraph - instance of graph to add the created node. @param [in] dependencies - const pointer to the dependencies on the memcpy execution node. @param [in] numDependencies - the number of the dependencies. @param [in] copyParams - const pointer to the parameters for the memory copy. @param [in] ctx - cotext related to current device. @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.