mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
fix: add missing setting of slm size in KB
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
7d25965a78
commit
0158decb2b
@ -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 {
|
||||
|
Reference in New Issue
Block a user