SWDEV-1 - Add missing checks in hipMemsetSync.cc

[ROCm/hip commit: 1606235b12]
Этот коммит содержится в:
Maneesh Gupta
2022-10-11 12:00:23 +05:30
коммит произвёл GitHub
родитель 16b5c5d7a6
Коммит 3db4c84176
+2 -2
Просмотреть файл
@@ -379,10 +379,10 @@ void memsetCheck(T* aPtr, size_t value, memSetType memsetType, MultiDData& data,
template <typename T> 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;
case allocType::hostRegisted:
HIP_CHECK(hipHostUnregister(aPtr));