Fix building the tests with Clang

Change-Id: I85c5617221e6b27553a773e76a05be9409ed10ef


[ROCm/roctracer commit: 426c9def66]
此提交包含在:
Laurent Morichetti
2022-05-24 09:11:48 -07:00
提交者 Laurent Morichetti
父節點 c1cf479c38
當前提交 9bd36c0f9e
共有 2 個檔案被更改,包括 5 行新增6 行删除
+4 -5
查看文件
@@ -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
查看文件
@@ -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;