Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cpuid_x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -1563,6 +1563,7 @@ int get_cpuname(void){
break;
case 11: //family 6 exmodel 11
switch (model) {
case 5: // Arrow Lake H/U
case 7: // Raptor Lake
case 10:
case 15:
Expand All @@ -1588,6 +1589,7 @@ int get_cpuname(void){
break;
case 15:
case 6: // Arrow Lake
case 5:
if(support_avx512())
return CPUTYPE_SAPPHIRERAPIDS;
if(support_avx2())
Expand Down Expand Up @@ -2418,6 +2420,7 @@ int get_coretype(void){

case 11:
switch (model) {
case 5: // Arrow Lake H/U
case 7: // Raptor Lake
case 10:
case 15:
Expand All @@ -2434,6 +2437,7 @@ int get_coretype(void){
}
case 12:
switch (model) {
case 5:
case 6: // Arrow Lake
if(support_amx_bf16())
return CORE_SAPPHIRERAPIDS;
Expand Down
Loading