Merge pull request #3426 from martin-frbg/pr3424

Add runtime DYNAMIC_ARCH cpu detection for Tiger Lake H
This commit is contained in:
Martin Kroeker 2021-10-28 07:31:12 +02:00 committed by GitHub
commit aa231b5875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -663,7 +663,7 @@ static gotoblas_t *get_coretype(void){
return NULL;
case 9:
case 8:
if (model == 12) { // Tiger Lake
if (model == 12 || model == 13) { // Tiger Lake
if (support_avx512())
return &gotoblas_SKYLAKEX;
if(support_avx2()){