Function hip_sys::hiprt::hipGraphAddMemcpyNode
source · pub unsafe extern "C" fn hipGraphAddMemcpyNode(
pGraphNode: *mut *mut hipGraphNode,
graph: *mut ihipGraph,
pDependencies: *const *mut hipGraphNode,
numDependencies: usize,
pCopyParams: *const hipMemcpy3DParms
) -> hipError_tExpand description
@brief Creates a memcpy 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 - const pointer to the dependencies on the memcpy execution node. @param [in] numDependencies - the number of the dependencies. @param [in] pCopyParams - const pointer to the parameters for the memory copy. @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.