SWDEV-489280 - Add missing hipGraphNodeSetParams API in dispatch table

Change-Id: I41dfd045fa4e29b49e605b8d583ec9f51dd6a6cc
This commit is contained in:
Satyanvesh Dittakavi
2024-10-03 11:42:47 +00:00
rodzic a6c5c6a95a
commit 15ecf834a1
+3
Wyświetl plik
@@ -1813,6 +1813,9 @@ hipError_t hipDrvGraphMemcpyNodeGetParams(hipGraphNode_t hNode, HIP_MEMCPY3D* no
hipError_t hipDrvGraphMemcpyNodeSetParams(hipGraphNode_t hNode, const HIP_MEMCPY3D* nodeParams) {
return hip::GetHipDispatchTable()->hipDrvGraphMemcpyNodeSetParams_fn(hNode, nodeParams);
}
hipError_t hipGraphNodeSetParams(hipGraphNode_t node, hipGraphNodeParams *nodeParams) {
return hip::GetHipDispatchTable()->hipGraphNodeSetParams_fn(node, nodeParams);
}
hipError_t hipExtHostAlloc(void** ptr, size_t size, unsigned int flags) {
return hip::GetHipDispatchTable()->hipExtHostAlloc_fn(ptr, size, flags);
}