libhsakmt: Fix CPU cache issue

For "Intel Meteor lake Mobile", the cache info is not in sysfs,
    That means /sys/devices/system/node/node%d/%s/cache is not exist,
    but system working fine.

Change-Id: Ie7c04426791a84c2288ff21df093226828a5f629
Signed-off-by: Gang Ba <Gang.Ba@amd.com>


[ROCm/ROCR-Runtime commit: 4bf73f521b]
This commit is contained in:
gaba
2023-12-06 12:54:46 -05:00
committed by David Yat Sin
vanhempi 8151aad0c2
commit dcf8b5fd6c
2 muutettua tiedostoa jossa 10 lisäystä ja 3 poistoa
@@ -64,7 +64,11 @@ TEST_F(KFDTopologyTest , BasicTest) {
" SGPR Size is " << pNodeProperties->SGPRSizePerCU << std::endl;
}
EXPECT_GT(pNodeProperties->NumMemoryBanks, HSAuint32(0)) << "Node index: " << node << "No MemoryBanks.";
EXPECT_GT(pNodeProperties->NumCaches, HSAuint32(0)) << "Node index: " << node << "No Caches.";
if (pNodeProperties->NumCaches ==0)
// SWDEV-420270
// For "Intel Meteor lake Mobile", the cache info is not in sysfs,
// That means /sys/devices/system/node/node%d/%s/cache is not exist.
LOG() << "Node index: " << node << " No Caches or not available to read ." << std::endl;
}
}