Browse Source

Merge pull request #5374 from martin-frbg/fixup-5373

Fix compilation of the new bgemm test
pull/5377/head
Martin Kroeker GitHub 2 months ago
parent
commit
81b30d4538
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/compare_sgemm_bgemm.c

+ 1
- 1
test/compare_sgemm_bgemm.c View File

@@ -57,7 +57,7 @@ static void *malloc_safe(size_t size) {
return malloc(size);
}

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



Loading…
Cancel
Save