From 6a9b977def0edf2419db64c19421da03b2f44c55 Mon Sep 17 00:00:00 2001 From: Branislav Brzak Date: Wed, 7 Aug 2024 16:07:10 +0200 Subject: [PATCH] SWDEV-478034 - Unable to link to hipGraphExecNodeSetParams Change-Id: I0b6b8d1a4281ecda3c1789d8829ade9771aed741 [ROCm/clr commit: 939c7887793f8280a3196cebc81ba1d07743f068] --- projects/clr/hipamd/src/hip_table_interface.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/projects/clr/hipamd/src/hip_table_interface.cpp b/projects/clr/hipamd/src/hip_table_interface.cpp index 12f6ae14a7..1939e8424f 100644 --- a/projects/clr/hipamd/src/hip_table_interface.cpp +++ b/projects/clr/hipamd/src/hip_table_interface.cpp @@ -586,6 +586,11 @@ hipError_t hipGraphExecChildGraphNodeSetParams(hipGraphExec_t hGraphExec, hipGra return hip::GetHipDispatchTable()->hipGraphExecChildGraphNodeSetParams_fn(hGraphExec, node, childGraph); } +hipError_t hipGraphExecNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, + hipGraphNodeParams* nodeParams) { + return hip::GetHipDispatchTable()->hipGraphExecNodeSetParams_fn(hGraphExec, node, + nodeParams); +} hipError_t hipGraphExecDestroy(hipGraphExec_t graphExec) { return hip::GetHipDispatchTable()->hipGraphExecDestroy_fn(graphExec); }