Update dynamic.c
Move Avoton support to exmodel=4 where it belongs
This commit is contained in:
parent
1a1f3245d6
commit
48599f0a3b
|
@ -261,6 +261,11 @@ static gotoblas_t *get_coretype(void){
|
||||||
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
|
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//Intel Avoton
|
||||||
|
if (model == 13) {
|
||||||
|
openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
|
||||||
|
return &gotoblas_NEHALEM;
|
||||||
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
case 5:
|
case 5:
|
||||||
//Intel Broadwell
|
//Intel Broadwell
|
||||||
|
@ -281,11 +286,6 @@ static gotoblas_t *get_coretype(void){
|
||||||
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
|
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Intel Avoton
|
|
||||||
if (model == 13) {
|
|
||||||
openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
|
|
||||||
return &gotoblas_NEHALEM;
|
|
||||||
}
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
case 0xf:
|
case 0xf:
|
||||||
|
|
Loading…
Reference in New Issue