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
Fix zero element GEMV test.
tags/v0.3.29
Chip Kerchner
1 year ago
parent
77f85c7c00
commit
89702e1f4a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
test/compare_sgemm_sbgemm.c
+ 1
- 1
test/compare_sgemm_sbgemm.c
View File
@@ -202,9 +202,9 @@ main (int argc, char *argv[])
return ret;
}
k = 1;
for (x = 1; x <= loop; x++)
{
k = (x == 0) ? 0 : 1;
float *A = (float *)malloc_safe(x * x * sizeof(FLOAT));
float *B = (float *)malloc_safe(x * sizeof(FLOAT));
float *C = (float *)malloc_safe(x * sizeof(FLOAT));
Write
Preview
Loading…
Cancel
Save