Support AVX512-enabled Alder Lake
This commit is contained in:
parent
f7e8f9ec57
commit
fa3e9f25e6
|
@ -708,8 +708,11 @@ static gotoblas_t *get_coretype(void){
|
||||||
|
|
||||||
case 9:
|
case 9:
|
||||||
if (model == 7 || model == 10) { // Alder Lake
|
if (model == 7 || model == 10) { // Alder Lake
|
||||||
|
if(support_avx512_bf16())
|
||||||
|
return &gotoblas_COOPERLAKE;
|
||||||
|
if (support_avx512())
|
||||||
|
return &gotoblas_SKYLAKEX;
|
||||||
if(support_avx2()){
|
if(support_avx2()){
|
||||||
openblas_warning(FALLBACK_VERBOSE, HASWELL_FALLBACK);
|
|
||||||
return &gotoblas_HASWELL;
|
return &gotoblas_HASWELL;
|
||||||
}
|
}
|
||||||
if(support_avx()) {
|
if(support_avx()) {
|
||||||
|
|
Loading…
Reference in New Issue