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
Merge pull request
#3675
from martin-frbg/issue3654
workaround ThunderX2 DNRM2 fault with ssq=inf,scale=0
tags/v0.3.21
Martin Kroeker
GitHub
3 years ago
parent
3df3d622eb
9e29598575
commit
bf8998a9f4
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
kernel/arm64/dznrm2_thunderx2t99.c
+ 1
- 0
kernel/arm64/dznrm2_thunderx2t99.c
View File
@@ -404,6 +404,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
#else
#else
nrm2_compute(n, x, inc_x, &ssq, &scale);
nrm2_compute(n, x, inc_x, &ssq, &scale);
#endif
#endif
if (fabs(scale) <1.e-300) return 0.;
ssq = sqrt(ssq) * scale;
ssq = sqrt(ssq) * scale;
return ssq;
return ssq;
Write
Preview
Loading…
Cancel
Save