Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Oct 9, 2024
1 parent 878f723 commit 8ab3c4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_gemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ int main()
|| test_gemm_1(M, N, K);

if (ret != 0)
return 0;
return ret;
}

return 0;
Expand Down
4 changes: 2 additions & 2 deletions tests/test_gemm_1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ int main()

int ret = test_gemm_0(M, N, K, TILE_M, TILE_N, TILE_K);
if (ret != 0)
return 0;
return ret;
}

// test no tiling
int ret = test_gemm_0(M, N, K, 100, 100, 100);
if (ret != 0)
return 0;
return ret;
}

return 0;
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gemm_3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ int main()

int ret = test_gemm_0(M, N, K) || test_gemm_1(M, N, K);
if (ret != 0)
return 0;
return ret;
}

return 0;
Expand Down

0 comments on commit 8ab3c4d

Please sign in to comment.