We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f736f commit 906af00Copy full SHA for 906af00
1 file changed
include/hws/gpu_amd/utility.hpp
@@ -47,7 +47,7 @@ namespace hws::detail {
47
48
#define HWS_HIP_ERROR_CHECK(hip_func) \
49
{ \
50
- const hiperror_t errc = hip_func; \
+ const hipError_t errc = hip_func; \
51
if (errc != hipSuccess) { \
52
throw std::runtime_error{ fmt::format("Error in HIP function call \"{}\": {}", #hip_func, hipGetErrorString(errc)) }; \
53
} \
0 commit comments