SWDEV-1 - Add missing checks in hipMemcpy3DAsync.cc

This commit is contained in:
Maneesh Gupta
2022-10-10 21:22:01 +05:30
committed by GitHub
parent 4f5e85735b
commit 2f82bf3e36
+3 -3
View File
@@ -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));
}
/*