Skip to content

Commit 1e14086

Browse files
Add support for retrieving maxbandwidth for different PVC stepings
Related-To: LOCI-3416 Signed-off-by: Mayank Raghuwanshi <mayank.raghuwanshi@intel.com>
1 parent 0d5f335 commit 1e14086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

level_zero/tools/source/sysman/memory/linux/os_memory_imp_prelim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ void LinuxMemoryImp::getHbmFrequency(PRODUCT_FAMILY productFamily, unsigned shor
151151
// For IGFX_XE_HP HBM frequency would be 2.8 GT/s = 2.8 * 1000 * 1000 * 1000 T/s = 2800000000 T/s
152152
hbmFrequency = 2.8 * gigaUnitTransferToUnitTransfer;
153153
} else if (productFamily == IGFX_PVC) {
154-
if (stepping == REVISION_B) {
154+
if (stepping >= REVISION_B) {
155155
const std::string baseDir = "gt/gt" + std::to_string(subdeviceId) + "/";
156156
// Calculating bandwidth based on HBM max frequency
157157
const std::string hbmRP0FreqFile = baseDir + "mem_RP0_freq_mhz";

0 commit comments

Comments
 (0)