From 280b6d57d1af8b92ae4160a7f43ab2a60620e6ae Mon Sep 17 00:00:00 2001 From: linouxis9 Date: Tue, 28 Mar 2023 00:55:23 +0200 Subject: [PATCH] Add more Intel Raptor Lake CPUIDs --- cpuid_x86.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpuid_x86.c b/cpuid_x86.c index 4afa931f0..ad13a8c8c 100644 --- a/cpuid_x86.c +++ b/cpuid_x86.c @@ -1547,6 +1547,8 @@ int get_cpuname(void){ case 11: //family 6 exmodel 11 switch (model) { case 7: // Raptor Lake + case 10: + case 15: if(support_avx2()) return CPUTYPE_HASWELL; if(support_avx()) @@ -2348,6 +2350,8 @@ int get_coretype(void){ case 11: switch (model) { case 7: // Raptor Lake + case 10: + case 15: #ifndef NO_AVX2 if(support_avx2()) return CORE_HASWELL;