Skip to content

Commit

Permalink
Refs #90 auto detect Intel Sandy Bridge Core i7-3820
Browse files Browse the repository at this point in the history
  • Loading branch information
xianyi committed Apr 23, 2012
1 parent fd2ee0c commit 74306b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cpuid_x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,9 @@ int get_cpuname(void){
case 12:
//Xeon Processor 5600 (Westmere-EP)
return CPUTYPE_NEHALEM;
case 13:
//Intel Core i7-3000 / Xeon E5 (Sandy Bridge)
return CPUTYPE_NEHALEM;
}
break;
}
Expand Down Expand Up @@ -1319,6 +1322,9 @@ int get_coretype(void){
case 12:
//Xeon Processor 5600 (Westmere-EP)
return CORE_NEHALEM;
case 13:
//Intel Core i7-3000 / Xeon E5 (Sandy Bridge)
return CORE_NEHALEM;
}
break;
}
Expand Down

0 comments on commit 74306b5

Please sign in to comment.