This corrects some interesting choices that were present in the HIP

unit tests such as e.g. de-allocating memory allocated with new[] using
free. All of these were identified via cppcheck.


[ROCm/hip commit: a619ac6f92]
Tento commit je obsažen v:
Alex Voicu
2017-11-01 22:51:22 +00:00
rodič 2979a99888
revize b8a81d2b75
7 změnil soubory, kde provedl 278 přidání a 52 odebrání
+3
Zobrazit soubor
@@ -57,5 +57,8 @@ int main(){
}
std::cout<<std::endl;
hipDeviceSynchronize();
free(A);
hipFree(Ad);
}
}