1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-01 05:11:15 +02:00

Add Raptor Lake-P and Raptor Lake-HX/S detection (#300)

This commit is contained in:
Mykola Hohsadze
2023-03-06 16:04:00 +02:00
committed by GitHub
parent 79c0d7d24e
commit 5607a689e0
2 changed files with 34 additions and 0 deletions

View File

@ -651,6 +651,8 @@ X86Microarchitecture GetX86Microarchitecture(const X86Info* info) {
// https://en.wikichip.org/wiki/intel/microarchitectures/rocket_lake
return INTEL_RCL;
case CPUID(0x06, 0xB7):
case CPUID(0x06, 0xBA):
case CPUID(0x06, 0xBF):
// https://en.wikichip.org/wiki/intel/microarchitectures/raptor_lake
return INTEL_RPL;
case CPUID(0x06, 0x85):