mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
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:
committed by
Compute-Runtime-Automation
parent
de72e91269
commit
35926a5a18
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user