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
Fix SICORTEX ASUM/ZASUM and SUM/ZSUM for INCX <=0 (
#4640
)
* Exit early if INCX <= 0
tags/v0.3.28^2
Martin Kroeker
GitHub
1 year ago
parent
23d5a8b16e
commit
4c03ed437f
No known key found for this signature in database
GPG Key ID:
B5690EEEBB952194
4 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
kernel/mips64/asum.S
+1
-0
kernel/mips64/sum.S
+1
-0
kernel/mips64/zasum.S
+1
-0
kernel/mips64/zsum.S
+ 1
- 0
kernel/mips64/asum.S
View File
@@ -73,6 +73,7 @@
MTC $0, s1
MTC $0, s2
blez INCX, .L999
dsll INCX, INCX, BASE_SHIFT
blez N, .L999
+ 1
- 0
kernel/mips64/sum.S
View File
@@ -73,6 +73,7 @@
MTC $0, s1
MTC $0, s2
blez INCX, .L999
dsll INCX, INCX, BASE_SHIFT
blez N, .L999
+ 1
- 0
kernel/mips64/zasum.S
View File
@@ -73,6 +73,7 @@
MTC $0, s1
MTC $0, s2
blez INCX, .L999
dsll INCX, INCX, ZBASE_SHIFT
blez N, .L999
+ 1
- 0
kernel/mips64/zsum.S
View File
@@ -73,6 +73,7 @@
MTC $0, s1
MTC $0, s2
blez INCX, .L999
dsll INCX, INCX, ZBASE_SHIFT
blez N, .L999
Write
Preview
Loading…
Cancel
Save