fix: add missing setting of slm size in KB

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2024-07-08 15:01:29 +00:00
committed by Compute-Runtime-Automation
parent 7d25965a78
commit 0158decb2b

View File

@ -3616,6 +3616,9 @@ struct Demarshaller<TOK_S_ADAPTER_INFO> {
case TOK_FBD_GT_SYSTEM_INFO__MAX_VECS: {
dst.SystemInfo.MaxVECS = readTokValue<decltype(dst.SystemInfo.MaxVECS)>(*tokSystemInfo);
} break;
case TOK_FBD_GT_SYSTEM_INFO__SLMSIZE_IN_KB: {
dst.SystemInfo.SLMSizeInKb = readTokValue<decltype(dst.SystemInfo.SLMSizeInKb)>(*tokSystemInfo);
} break;
};
tokSystemInfo = tokSystemInfo + 1 + tokSystemInfo->valueDwordCount;
} else {