SWDEV-1 - Add missing checks in MemUtils.hh

[ROCm/hip-tests commit: a152a895b6]
Bu işleme şunda yer alıyor:
Maneesh Gupta
2022-10-11 11:58:41 +05:30
işlemeyi yapan: GitHub
ebeveyn dd4ecee1cb
işleme 20d2e730ae
+2 -2
Dosyayı Görüntüle
@@ -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));