SWDEV-388256 - Add hipExtGetLastError

Change-Id: I588f155b2755306e452501d565a1fac17f0a90ce


[ROCm/hip commit: 3dfbd7f2a8]
This commit is contained in:
Rahul Garg
2023-11-09 04:28:36 +00:00
parent 7965ab5a4f
commit ec87cda815
@@ -2137,6 +2137,20 @@ hipError_t hipFuncSetSharedMemConfig(const void* func, hipSharedMemConfig config
* @see hipGetErrorString, hipGetLastError, hipPeakAtLastError, hipError_t
*/
hipError_t hipGetLastError(void);
/**
* @brief Return last error returned by any HIP runtime API call and resets the stored error code to
* #hipSuccess
*
* @returns return code from last HIP called from the active host thread
*
* Returns the last error that has been returned by any of the runtime calls in the same host
* thread, and then resets the saved error to #hipSuccess.
*
* @see hipGetErrorString, hipGetLastError, hipPeakAtLastError, hipError_t
*/
hipError_t hipExtGetLastError(void);
/**
* @brief Return last error returned by any HIP runtime API call.
*