Skip to content

Commit 81b30d4

Browse files
authored
Merge pull request #5374 from martin-frbg/fixup-5373
Fix compilation of the new bgemm test
2 parents 7acb122 + aad97c7 commit 81b30d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/compare_sgemm_bgemm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static void *malloc_safe(size_t size) {
5757
return malloc(size);
5858
}
5959

60-
static is_close(float a, float b, float rtol, float atol) {
60+
static float is_close(float a, float b, float rtol, float atol) {
6161
return fabs(a - b) <= (atol + rtol*fabs(b));
6262
}
6363

0 commit comments

Comments
 (0)