SWDEV-388256 - Add hipExtGetLastError

Change-Id: I588f155b2755306e452501d565a1fac17f0a90ce
Этот коммит содержится в:
Rahul Garg
2023-11-09 04:28:36 +00:00
родитель 71dccfa624
Коммит 3dfbd7f2a8
+14
Просмотреть файл
@@ -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.
*