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 unit test to start at 1 instead of 0 - since malloc zero bytes fails on some systems.
tags/v0.3.29
Chip Kerchner
1 year ago
parent
eba8615c11
commit
b1802f4dc8
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
@@ -96,7 +96,7 @@ main (int argc, char *argv[])
char transA = 'N', transB = 'N';
float alpha = 1.0, beta = 0.0;
for (x =
0
; x <= loop; x++)
for (x =
1
; x <= loop; x++)
{
if ((x > 100) && (x != SBGEMM_LARGEST)) continue;
m = k = n = x;
Write
Preview
Loading…
Cancel
Save