SWDEV-314661 - Add hipGraphInstantiateWithFlags API mapping in nvidia path

Change-Id: Ibbf54ef18978448e92571f0535124844154726b6
Этот коммит содержится в:
Satyanvesh Dittakavi
2022-01-06 13:42:24 +00:00
родитель 1a017b591e
Коммит d64b750aec
+5
Просмотреть файл
@@ -2316,6 +2316,11 @@ inline static hipError_t hipGraphInstantiate(hipGraphExec_t* pGraphExec, hipGrap
cudaGraphInstantiate(pGraphExec, graph, pErrorNode, pLogBuffer, bufferSize));
}
inline static hipError_t hipGraphInstantiateWithFlags(hipGraphExec_t* pGraphExec, hipGraph_t graph,
unsigned long long flags) {
return hipCUDAErrorTohipError(cudaGraphInstantiateWithFlags(pGraphExec, graph, flags));
}
inline static hipError_t hipGraphLaunch(hipGraphExec_t graphExec, hipStream_t stream) {
return hipCUDAErrorTohipError(cudaGraphLaunch(graphExec, stream));
}