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.
This commit is contained in:
Alex Voicu
2017-11-01 22:51:22 +00:00
parent fe32685fbc
commit 58a18eaf0c
7 changed files with 278 additions and 52 deletions
@@ -57,5 +57,8 @@ int main(){
}
std::cout<<std::endl;
hipDeviceSynchronize();
free(A);
hipFree(Ad);
}
}