Skip to content

Commit aad97c7

Browse files
authored
Fix return type declaration
1 parent 7acb122 commit aad97c7

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)