SWDEV-388256 - Add support of hipExtGetLastError

Change-Id: Ie119d5ea611019996b8a80f7b820ca6a160496a6


[ROCm/clr commit: 92aa9d0fba]
This commit is contained in:
Rahul Garg
2023-11-09 04:30:39 +00:00
parent e51c2f6097
commit 0051334261
4 changed files with 23 additions and 1 deletions
+7
View File
@@ -23,6 +23,13 @@
#include "hip_internal.hpp"
namespace hip {
hipError_t hipExtGetLastError()
{
HIP_INIT_API(hipExtGetLastError);
hipError_t err = hip::tls.last_error_;
hip::tls.last_error_ = hipSuccess;
return err;
}
hipError_t hipGetLastError()
{