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
fixed
#4
csrot & drot returned the wrong result when incx==incy==0 on i686 arch.
tags/v0.1alpha1
Xianyi
14 years ago
parent
bd7a74234f
commit
bfaa80c316
2 changed files
with
10 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
kernel/x86/rot_sse2.S
+6
-0
kernel/x86/zrot_sse.S
+ 4
- 0
kernel/x86/rot_sse2.S
View File
@@ -859,6 +859,10 @@
.L50:
.L50:
movl N, I
movl N, I
cmpl $0, INCX
je .L56
cmpl $0, INCY
je .L56
sarl $2, I
sarl $2, I
jle .L55
jle .L55
ALIGN_3
ALIGN_3
+ 6
- 0
kernel/x86/zrot_sse.S
View File
@@ -1285,6 +1285,12 @@
.L50:
.L50:
movl N, I
movl N, I
//if incx ==0 || incy==0 jump to the tail
cmpl $0, INCX
je .L56
cmpl $0, INCY
je .L56
sarl $2, I
sarl $2, I
jle .L55
jle .L55
ALIGN_3
ALIGN_3
Write
Preview
Loading…
Cancel
Save