This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
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
#891
from rndfax/develop
mips64/axpy: fix error when INCY == 0
tags/v0.2.19^2
Zhang Xianyi
9 years ago
parent
bd06b246cc
fca66262c4
commit
bac478d17e
1 changed files
with
16 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+16
-0
kernel/mips64/axpy.S
+ 16
- 0
kernel/mips64/axpy.S
View File
@@ -225,7 +225,9 @@
.align 3
.L20:
beqz INCY, .L27
dsra I, N, 3
move YY, Y
blez I, .L25
@@ -405,5 +407,19 @@
j $31
NOP
.align 3
.L27:
LD b1, 0 * SIZE(Y)
.L28:
daddiu N, N, -1
LD a1, 0 * SIZE(X)
daddu X, X, INCX
bgtz N, .L28
MADD b1, b1, ALPHA, a1
j .L999
ST b1, 0 * SIZE(Y)
EPILOGUE
Write
Preview
Loading…
Cancel
Save