SWDEV-317135 - Fix mapping of hipStreamUpdateCaptureDependencies on cuda path

Change-Id: Ibbcf8136fa527a20684a377311bc76182345d17b
This commit is contained in:
Satyanvesh Dittakavi
2022-01-06 13:20:18 +00:00
والد d64b750aec
کامیت 334f3c6449
@@ -2542,7 +2542,8 @@ inline static hipError_t hipStreamUpdateCaptureDependencies(hipStream_t stream,
hipGraphNode_t* dependencies,
size_t numDependencies,
unsigned int flags __dparm(0)) {
return hipCUDAErrorTohipError(cudaStreamUpdateCaptureDependencies(stream, dependencies, flags));
return hipCUDAErrorTohipError(cudaStreamUpdateCaptureDependencies(stream, dependencies,
numDependencies, flags));
}
inline static hipError_t hipGraphAddEventRecordNode(hipGraphNode_t* pGraphNode, hipGraph_t graph,