Browse Source

Merge pull request #5183 from annop-w/fix_sbgemv_t

Fix bug in ARM64 sbgemv_t
tags/v0.3.30
Martin Kroeker GitHub 6 months ago
parent
commit
e9fbe0a838
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
      kernel/arm64/sbgemv_t_bfdot.c

+ 1
- 1
kernel/arm64/sbgemv_t_bfdot.c View File

@@ -196,7 +196,7 @@ int CNAME(BLASLONG m, BLASLONG n, float alpha, bfloat16 *a, BLASLONG lda, bfloat
y[iy] = alpha * temp + beta * y[iy]; y[iy] = alpha * temp + beta * y[iy];
} }
iy += incy; iy += incy;
a += lda;
a_ptr += lda;
} }
return (0); return (0);
} }

Loading…
Cancel
Save