diff --git a/ryzen-smu-cli/Program.cs b/ryzen-smu-cli/Program.cs index 5108a0f..c5d5e86 100644 --- a/ryzen-smu-cli/Program.cs +++ b/ryzen-smu-cli/Program.cs @@ -79,12 +79,18 @@ namespace ryzen_smu_cli Console.WriteLine("Current PBO offsets:"); string offsetLine = ""; bool flagNotifyDisabledCCD = false; - for (int i = 0; i < mappedCores.Count; i++) + + for (int logicalCore = 0; logicalCore < mappedCores.Count; logicalCore++) { - int mapIndex = i < 8 ? 0 : 1; + int physicalCore = mappedCores[logicalCore]; + int ccdIndex = (int)Math.Floor((double)(physicalCore / 8)); + int ccdBitMask = ccdIndex << 8; + int coreNumOnCcd = physicalCore % 8; + uint coreBitMask = (uint)((ccdBitMask | (coreNumOnCcd & 0xF)) << 20); + try { - offsetLine += Convert.ToDecimal((int)ryzen.GetPsmMarginSingleCore((uint)(((mapIndex << 8) | ((mappedCores[i] % 8) & 0xF)) << 20))!); + offsetLine += Convert.ToDecimal((int)ryzen.GetPsmMarginSingleCore(coreBitMask)!); offsetLine += ","; } diff --git a/ryzen-smu-cli/ryzen-smu-cli.csproj b/ryzen-smu-cli/ryzen-smu-cli.csproj index b7c7957..17971b6 100644 --- a/ryzen-smu-cli/ryzen-smu-cli.csproj +++ b/ryzen-smu-cli/ryzen-smu-cli.csproj @@ -6,7 +6,7 @@ ryzen_smu_cli enable enable - 0.1.2 + 0.1.3