diff --git a/projects/clr/hipamd/src/hip_table_interface.cpp b/projects/clr/hipamd/src/hip_table_interface.cpp index 34885c02ef..7d2ebf6fa2 100644 --- a/projects/clr/hipamd/src/hip_table_interface.cpp +++ b/projects/clr/hipamd/src/hip_table_interface.cpp @@ -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); }