Skip to content

Commit

Permalink
Fix CPU detection for AMD 7975WX
Browse files Browse the repository at this point in the history
Resolves #3756
  • Loading branch information
rocallahan committed Jun 3, 2024
1 parent b35fa4d commit fa1f15d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/PerfCounters_x86.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,12 @@ static CpuMicroarch compute_cpu_microarch() {
}
break;
case 0x10f10: // Raven Ridge, Great Horned Owl (Zen) (UNTESTED)
case 0x10f80: // Banded Kestrel (Zen), Picasso (Zen+) (UNTESTED)
case 0x10f80: // Banded Kestrel (Zen), Picasso (Zen+), 7975WX
case 0x20f00: // Dali (Zen) (UNTESTED)
if (ext_family == 8) {
return AMDZen;
} else if (ext_family == 0xa) {
return AMDZen2;
}
break;
case 0x30f10: // Rome, Castle Peak (Zen 2)
Expand Down

0 comments on commit fa1f15d

Please sign in to comment.