SWDEV-1 - Add missing checks in MemUtils.hh

[ROCm/hip-tests commit: a152a895b6]
This commit is contained in:
Maneesh Gupta
2022-10-11 11:58:41 +05:30
committed by GitHub
parent dd4ecee1cb
commit 20d2e730ae
@@ -344,10 +344,10 @@ static inline void memsetCheck(T* aPtr, size_t value, memType memType, MultiDDat
template <typename T> static inline void freeStuff(T* aPtr, allocType type) {
switch (type) {
case allocType::deviceMalloc:
hipFree(aPtr);
HIP_CHECK(hipFree(aPtr));
break;
case allocType::hostMalloc:
hipHostFree(aPtr);
HIP_CHECK(hipHostFree(aPtr));
break;
default: // for host and device registered
HIP_CHECK(hipHostUnregister(aPtr));