Browse Source
Merge pull request #3426 from martin-frbg/pr3424
Add runtime DYNAMIC_ARCH cpu detection for Tiger Lake H
tags/v0.3.19
Martin Kroeker
GitHub
4 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
driver/others/dynamic.c
|
|
|
@@ -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()){ |
|
|
|
|