Fix building the tests with Clang

Change-Id: I85c5617221e6b27553a773e76a05be9409ed10ef


[ROCm/roctracer commit: 426c9def66]
This commit is contained in:
Laurent Morichetti
2022-05-24 09:11:48 -07:00
committed by Laurent Morichetti
parent c1cf479c38
commit 9bd36c0f9e
2 changed files with 5 additions and 6 deletions
@@ -131,7 +131,7 @@ int main() {
#endif
int i;
int errors;
int errors = 0;
init_tracing();
@@ -210,22 +210,21 @@ int main() {
// CPU MatrixTranspose computation
#if HIP_TEST
matrixTransposeCPUReference(cpuTransposeMatrix, Matrix, WIDTH);
#endif
// verify the results
errors = 0;
double eps = 1.0E-6;
for (i = 0; i < NUM; i++) {
if (abs(TransposeMatrix[i] - cpuTransposeMatrix[i]) > eps) {
if (abs((double)TransposeMatrix[i] - cpuTransposeMatrix[i]) > eps) {
errors++;
}
}
if ((HIP_TEST != 0) && (errors != 0)) {
if (errors != 0) {
fprintf(stderr, "FAILED: %d errors\n", errors);
} else {
errors = 0;
fprintf(stderr, "PASSED!\n");
}
#endif
// free the resources on device side
CHECK_HIP(hipFree(gpuMatrix));
+1 -1
View File
@@ -372,7 +372,7 @@ void test_func(int kiter, int diter, int agents) {
CHECK(err);
for (int j = 1; j <= diter; ++j) {
Aql packet = {0};
Aql packet{};
packet.header.type = HSA_PACKET_TYPE_KERNEL_DISPATCH;
packet.header.barrier = 1;
packet.header.acquire = HSA_FENCE_SCOPE_SYSTEM;