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
#1281
from sharkcz/armv8
fix detection of generic ARMv8 CPUs
tags/v0.3.0
Martin Kroeker
GitHub
8 years ago
parent
a8a342ccc4
1763e01567
commit
50715e8945
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
cpuid_arm64.c
+ 1
- 1
cpuid_arm64.c
View File
@@ -142,7 +142,7 @@ int detect(void)
if(p != NULL)
{
if (strstr(p, "AArch64"))
if (
(
strstr(p, "AArch64"))
|| (strstr(p, "8")))
{
return CPU_ARMV8;
Write
Preview
Loading…
Cancel
Save