SWDEV-240806 - Added API hipGraphAddMemcpyNode1D

Change-Id: I32440de0e890b001274fc7ca564fd91363d716d8
This commit is contained in:
Anusha GodavarthySurya
2021-07-20 04:45:07 -07:00
committed by Anusha Godavarthy Surya
orang tua 586165ebc2
melakukan 91ac5744ef
+4
Melihat File
@@ -4153,6 +4153,10 @@ hipError_t hipGraphAddKernelNode(hipGraphNode_t* pGraphNode, hipGraph_t graph,
hipError_t hipGraphAddMemcpyNode(hipGraphNode_t* pGraphNode, hipGraph_t graph,
const hipGraphNode_t* pDependencies, size_t numDependencies,
const hipMemcpy3DParms* pCopyParams);
// Creates a 1D memcpy node and adds it to a graph.
hipError_t hipGraphAddMemcpyNode1D(hipGraphNode_t* pGraphNode, hipGraph_t graph,
const hipGraphNode_t* pDependencies, size_t numDependencies,
void* dst, const void* src, size_t count, hipMemcpyKind kind);
// Creates a memset node and adds it to a graph.
hipError_t hipGraphAddMemsetNode(hipGraphNode_t* pGraphNode, hipGraph_t graph,
const hipGraphNode_t* pDependencies, size_t numDependencies,