1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-25 05:40:39 -05:00

Added Zen4 (Hawk Point) CPUs detection

This commit is contained in:
SChernykh
2025-10-15 08:05:48 +02:00
parent a659397c41
commit da5a5674b4
2 changed files with 2 additions and 2 deletions

View File

@@ -250,7 +250,7 @@ xmrig::BasicCpuInfo::BasicCpuInfo() :
break;
case 0x19:
if (m_model == 0x61) {
if ((m_model == 0x61) || (m_model == 0x75)) {
m_arch = ARCH_ZEN4;
m_msrMod = MSR_MOD_RYZEN_19H_ZEN4;
}