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.
Este cometimento está contido em:
@@ -46,7 +46,6 @@ int main(int argc, char *argv[])
|
||||
A_h = new char[Nbytes];
|
||||
|
||||
HIPCHECK ( hipMalloc((void **) &A_d, Nbytes) );
|
||||
A_h = (char*)malloc(Nbytes);
|
||||
|
||||
printf ("Size=%zu memsetval=%2x \n", Nbytes, memsetval);
|
||||
HIPCHECK ( hipMemsetD8(A_d, memsetval, Nbytes) );
|
||||
@@ -61,7 +60,7 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
hipFree((void *) A_d);
|
||||
free(A_h);
|
||||
delete [] A_h;
|
||||
passed();
|
||||
|
||||
}
|
||||
|
||||
Criar uma nova questão referindo esta
Bloquear um utilizador