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

This commit is contained in:
Aryan Salmanpour
2024-01-17 10:52:48 -05:00
committed by GitHub
vanhempi b188989f3f
commit 1a77f3d1b0
+1 -1
Näytä tiedosto
@@ -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;\
}\
}