From f125e30805cced551152230bfa36c924bf3f6ea9 Mon Sep 17 00:00:00 2001 From: Audrey Dutcher Date: Fri, 5 Apr 2024 11:40:46 -0700 Subject: [PATCH] Add additional Raptor Lake microarchitecture type, observed on i7-13700HX --- src/PerfCounters_x86.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PerfCounters_x86.h b/src/PerfCounters_x86.h index 06a429c78b2..a95e6869441 100644 --- a/src/PerfCounters_x86.h +++ b/src/PerfCounters_x86.h @@ -88,6 +88,7 @@ static CpuMicroarch compute_cpu_microarch() { return IntelAlderlake; case 0xb0670: case 0xb06a0: + case 0xb06f0: return IntelRaptorlake; case 0x806f0: return IntelSapphireRapid;