This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
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
Fixing block issue with transpose version.
tags/v0.3.29
Chip Kerchner
1 year ago
parent
d7c0d87cd1
commit
c8788208c8
2 changed files
with
2 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
kernel/power/sbgemv_n.c
+1
-0
kernel/power/sbgemv_t.c
+ 1
- 3
kernel/power/sbgemv_n.c
View File
@@ -202,10 +202,8 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT alpha, IFLOAT *a, BLASLONG lda, IFLOAT *
a += NB;
if (inc_y != 1) {
move_y(NB, ybuffer, y_ptr, inc_y);
y_ptr += (NB * inc_y);
} else {
y_ptr += NB;
}
y_ptr += (NB * inc_y);
}
return 0;
+ 1
- 0
kernel/power/sbgemv_t.c
View File
@@ -124,6 +124,7 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT alpha, IFLOAT *a, BLASLONG lda, IFLOAT *
a += NB;
x += NB * inc_x;
beta = (FLOAT)1;
}
return 0;
Write
Preview
Loading…
Cancel
Save