mirror of
https://github.com/rawhide-kobayashi/ryzen-smu-cli.git
synced 2025-04-18 13:41:51 -05:00
"Bitmask" vs. "BitMask"
This commit is contained in:
parent
f7cf08a659
commit
056a3add8f
@ -84,9 +84,9 @@ namespace ryzen_smu_cli
|
|||||||
{
|
{
|
||||||
int physicalCore = mappedCores[logicalCore];
|
int physicalCore = mappedCores[logicalCore];
|
||||||
int ccdIndex = (int)Math.Floor((double)(physicalCore / 8));
|
int ccdIndex = (int)Math.Floor((double)(physicalCore / 8));
|
||||||
int ccdBitmask = ccdIndex << 8;
|
int ccdBitMask = ccdIndex << 8;
|
||||||
int coreNumOnCcd = physicalCore % 8;
|
int coreNumOnCcd = physicalCore % 8;
|
||||||
uint coreBitMask = (uint)((ccdBitmask | (coreNumOnCcd & 0xF)) << 20);
|
uint coreBitMask = (uint)((ccdBitMask | (coreNumOnCcd & 0xF)) << 20);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user