Print the hip error name string instead of the hip status integer for better clarity of a hip failure occurs (#181)

[ROCm/rocdecode commit: 1a77f3d1b0]
This commit is contained in:
Aryan Salmanpour
2024-01-17 10:52:48 -05:00
gecommit door GitHub
bovenliggende 5cd81b0a5b
commit 03192ed89c
@@ -37,7 +37,7 @@ THE SOFTWARE.
#define CHECK_HIP(call) {\
hipError_t hip_status = call;\
if (hip_status != hipSuccess) {\
std::cout << "HIP failure: " << #call << " failed with 'status# " << hip_status << "' at " << __FILE__ << ":" << __LINE__ << std::endl;\
std::cout << "HIP failure: " << #call << " failed with 'status: " << hipGetErrorName(hip_status) << "' at " << __FILE__ << ":" << __LINE__ << std::endl;\
return ROCDEC_RUNTIME_ERROR;\
}\
}