From ba27936ceb148e4bed775dbb5def76ad3c12c1c3 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 28 Jul 2020 09:03:52 +0000 Subject: [PATCH] Add cpuid detection of AMD Zen2 Matisse and Renoir --- driver/others/dynamic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/others/dynamic.c b/driver/others/dynamic.c index c03b0b21d..761cf96fa 100644 --- a/driver/others/dynamic.c +++ b/driver/others/dynamic.c @@ -718,7 +718,7 @@ static gotoblas_t *get_coretype(void){ return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels. } } - } else if (exfamily == 9) { + } else if (exfamily == 9 || exfamily == 23 || exfamily == 25) { if(support_avx()) return &gotoblas_ZEN; else{