This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
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
b55ca71d5b
edef2e4441
commit
e9fbe0a838
No known key found for this signature in database
GPG Key ID:
B5690EEEBB952194
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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];
}
iy += incy;
a += lda;
a
_ptr
+= lda;
}
return (0);
}
Write
Preview
Loading…
Cancel
Save