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
GEMV tests don't like zero elements.
tags/v0.3.29
Chip Kerchner
1 year ago
parent
868aa857bc
commit
77f85c7c00
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
@@ -203,7 +203,7 @@ main (int argc, char *argv[])
}
k = 1;
for (x =
0
; x <= loop; x++)
for (x =
1
; x <= loop; x++)
{
float *A = (float *)malloc_safe(x * x * sizeof(FLOAT));
float *B = (float *)malloc_safe(x * sizeof(FLOAT));
Write
Preview
Loading…
Cancel
Save