From 48313b8655bc275fade67a545f1e427d789194fd Mon Sep 17 00:00:00 2001 From: Jatin Chaudhary <51944368+cjatin@users.noreply.github.com> Date: Fri, 24 Oct 2025 09:29:27 +0100 Subject: [PATCH] SWDEV-1 add missing hiperror entries (#1450) --- projects/clr/hipamd/src/hip_error.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/projects/clr/hipamd/src/hip_error.cpp b/projects/clr/hipamd/src/hip_error.cpp index 3bf08b0d8a..ddb9bdcb95 100644 --- a/projects/clr/hipamd/src/hip_error.cpp +++ b/projects/clr/hipamd/src/hip_error.cpp @@ -191,6 +191,10 @@ const char* ihipGetErrorName(hipError_t hip_error) { return "hipErrorStreamCaptureWrongThread"; case hipErrorGraphExecUpdateFailure: return "hipErrorGraphExecUpdateFailure"; + case hipErrorInvalidChannelDescriptor: + return "hipErrorInvalidChannelDescriptor"; + case hipErrorInvalidTexture: + return "hipErrorInvalidTexture"; case hipErrorTbd: return "hipErrorTbd"; default: @@ -341,6 +345,10 @@ const char* ihipGetErrorString(hipError_t hip_error) { case hipErrorGraphExecUpdateFailure: return "the graph update was not performed because it included changes which violated " "constraints specific to instantiated graph update"; + case hipErrorInvalidChannelDescriptor: + return "invalid resource description of texture passed to the api"; + case hipErrorInvalidTexture: + return "invalid texture object passed to the api"; case hipErrorRuntimeMemory: return "runtime memory call returned error"; case hipErrorRuntimeOther: