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 core detection for Kaby Lake without AVX (G4560)
Should
fix
#1109
)
tags/v0.2.20^2
Martin Kroeker
GitHub
9 years ago
parent
d1fe040d9b
commit
688267edf3
1 changed files
with
8 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-1
cpuid_x86.c
+ 8
- 1
cpuid_x86.c
View File
@@ -1777,7 +1777,14 @@ int get_coretype(void){
case 9:
case 8:
if (model == 14) // Kaby Lake
return CORE_HASWELL;
if(support_avx())
#ifndef NO_AVX2
return CORE_HASWELL;
#else
return CORE_SANDYBRIDGE;
#endif
else
return CORE_NEHALEM;
}
break;
Write
Preview
Loading…
Cancel
Save