From 1e140864059dcd0e17cc99fb2c2a905dfb3f71de Mon Sep 17 00:00:00 2001 From: Mayank Raghuwanshi Date: Fri, 9 Sep 2022 12:22:15 +0000 Subject: [PATCH] Add support for retrieving maxbandwidth for different PVC stepings Related-To: LOCI-3416 Signed-off-by: Mayank Raghuwanshi --- .../tools/source/sysman/memory/linux/os_memory_imp_prelim.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_zero/tools/source/sysman/memory/linux/os_memory_imp_prelim.cpp b/level_zero/tools/source/sysman/memory/linux/os_memory_imp_prelim.cpp index 45690d296b104..5112415712f0d 100644 --- a/level_zero/tools/source/sysman/memory/linux/os_memory_imp_prelim.cpp +++ b/level_zero/tools/source/sysman/memory/linux/os_memory_imp_prelim.cpp @@ -151,7 +151,7 @@ void LinuxMemoryImp::getHbmFrequency(PRODUCT_FAMILY productFamily, unsigned shor // For IGFX_XE_HP HBM frequency would be 2.8 GT/s = 2.8 * 1000 * 1000 * 1000 T/s = 2800000000 T/s hbmFrequency = 2.8 * gigaUnitTransferToUnitTransfer; } else if (productFamily == IGFX_PVC) { - if (stepping == REVISION_B) { + if (stepping >= REVISION_B) { const std::string baseDir = "gt/gt" + std::to_string(subdeviceId) + "/"; // Calculating bandwidth based on HBM max frequency const std::string hbmRP0FreqFile = baseDir + "mem_RP0_freq_mhz";