SWDEV-421025 - hipGraphInstantiateWithParams API changes

Change-Id: Ib07d4dd1698220b68ed27f91d58d3bd315a8804c
This commit is contained in:
Rahul Manocha
2024-01-15 21:19:00 +00:00
zatwierdzone przez Maneesh Gupta
rodzic ceffb24416
commit 1a3901fa49
7 zmienionych plików z 245 dodań i 29 usunięć
+5
Wyświetl plik
@@ -661,6 +661,11 @@ hipError_t hipGraphInstantiateWithFlags(hipGraphExec_t* pGraphExec, hipGraph_t g
unsigned long long flags) {
return hip::GetHipDispatchTable()->hipGraphInstantiateWithFlags_fn(pGraphExec, graph, flags);
}
hipError_t hipGraphInstantiateWithParams(hipGraphExec_t* pGraphExec, hipGraph_t graph,
hipGraphInstantiateParams* instantiateParams) {
return hip::GetHipDispatchTable()->hipGraphInstantiateWithParams_fn(pGraphExec, graph,
instantiateParams);
}
hipError_t hipGraphKernelNodeCopyAttributes(hipGraphNode_t hSrc, hipGraphNode_t hDst) {
return hip::GetHipDispatchTable()->hipGraphKernelNodeCopyAttributes_fn(hSrc, hDst);
}