SWDEV-1 - Add missing checks in hipMemcpy3DAsync.cc

[ROCm/hip-tests commit: 2f82bf3e36]
This commit is contained in:
Maneesh Gupta
2022-10-10 21:22:01 +05:30
committato da GitHub
parent 8fbdd2eb87
commit ff6057a012
@@ -109,10 +109,10 @@ void Memcpy3DAsync<T>::AllocateMemory() {
*/
template <typename T>
void Memcpy3DAsync<T>::DeAllocateMemory() {
hipFreeArray(arr);
hipFreeArray(arr1);
HIP_CHECK(hipFreeArray(arr));
HIP_CHECK(hipFreeArray(arr1));
free(hData);
hipStreamDestroy(stream);
HIP_CHECK(hipStreamDestroy(stream));
}
/*