Refs #332. Added addtional Intel Ivy Bridge and Haswell CPU-id.
This commit is contained in:
@@ -186,7 +186,7 @@ static gotoblas_t *get_coretype(void){
|
||||
return NULL;
|
||||
case 3:
|
||||
//Intel Sandy Bridge 22nm (Ivy Bridge?)
|
||||
if (model == 10) {
|
||||
if (model == 10 || model == 14) {
|
||||
if(support_avx())
|
||||
return &gotoblas_SANDYBRIDGE;
|
||||
else{
|
||||
@@ -195,7 +195,7 @@ static gotoblas_t *get_coretype(void){
|
||||
}
|
||||
}
|
||||
//Intel Haswell
|
||||
if (model == 12) {
|
||||
if (model == 12 || model == 15) {
|
||||
if(support_avx())
|
||||
return &gotoblas_HASWELL;
|
||||
else{
|
||||
@@ -206,7 +206,7 @@ static gotoblas_t *get_coretype(void){
|
||||
return NULL;
|
||||
case 4:
|
||||
//Intel Haswell
|
||||
if (model == 5) {
|
||||
if (model == 5 || model == 6) {
|
||||
if(support_avx())
|
||||
return &gotoblas_HASWELL;
|
||||
else{
|
||||
|
||||
Reference in New Issue
Block a user