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

Add AMD ZEN4 Raphael detection (#277)

This commit is contained in:
Mykola Hohsadze
2022-10-19 12:36:27 +03:00
committed by GitHub
parent 4760834428
commit 627959faee
2 changed files with 22 additions and 0 deletions

View File

@ -744,6 +744,7 @@ X86Microarchitecture GetX86Microarchitecture(const X86Info* info) {
// https://en.wikichip.org/wiki/amd/microarchitectures/zen_3
return AMD_ZEN3;
case CPUID(0x19, 0x10):
case CPUID(0x19, 0x61):
// https://en.wikichip.org/wiki/amd/microarchitectures/zen_4
return AMD_ZEN4;
default: