SWDEV-1 - Add missing checks in hipMemcpy3DAsync.cc

[ROCm/hip commit: a5b61aac74]
This commit is contained in:
Maneesh Gupta
2022-10-10 21:22:01 +05:30
committato da GitHub
parent 7a9fa6f7fd
commit fb0c0e9949
@@ -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));
}
/*