We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0d0406 + 4f4e286 commit 993e56bCopy full SHA for 993e56b
cpuid_x86.c
@@ -2164,13 +2164,13 @@ int get_coretype(void){
2164
case 8:
2165
if (model == 12) { // Tiger Lake
2166
if(support_avx512())
2167
- return CPUTYPE_SKYLAKEX;
+ return CORE_SKYLAKEX;
2168
if(support_avx2())
2169
- return CPUTYPE_HASWELL;
+ return CORE_HASWELL;
2170
if(support_avx())
2171
- return CPUTYPE_SANDYBRIDGE;
+ return CORE_SANDYBRIDGE;
2172
else
2173
- return CPUTYPE_NEHALEM;
+ return CORE_NEHALEM;
2174
}
2175
if (model == 14) { // Kaby Lake
2176
0 commit comments