SWDEV-1 - Add missing checks in hipMemsetSync.cc
This commit is contained in:
zatwierdzone przez
GitHub
rodzic
a152a895b6
commit
f165e42933
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user