fix(sysman): Add GDDR6 memory type into Memory Properties

Related-To: NEO-14810

Signed-off-by: Anvesh Bakwad <anvesh.bakwad@intel.com>
This commit is contained in:
Anvesh Bakwad
2025-05-05 16:45:40 +00:00
committed by Compute-Runtime-Automation
parent de72e91269
commit 35926a5a18
3 changed files with 27 additions and 6 deletions

View File

@@ -65,9 +65,12 @@ ze_result_t SysmanProductHelperHw<gfxProduct>::getMemoryProperties(zes_mem_prope
case NEO::DeviceBlobConstants::MemoryType::lpddr5:
pProperties->type = ZES_MEM_TYPE_LPDDR5;
break;
default:
pProperties->type = ZES_MEM_TYPE_DDR;
case NEO::DeviceBlobConstants::MemoryType::gddr6:
pProperties->type = ZES_MEM_TYPE_GDDR6;
break;
default:
DEBUG_BREAK_IF(true);
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
if (pProperties->type == ZES_MEM_TYPE_HBM) {