Revert "fix: serialize constructBcsEngine"

This reverts commit 9c92733829.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-08-20 02:46:49 +02:00
committed by Compute-Runtime-Automation
parent 8602de7864
commit f763974ec5
3 changed files with 31 additions and 40 deletions

View File

@@ -167,7 +167,7 @@ int BinaryEncoder::processBinary(const std::vector<std::string> &ptmFileLines, s
std::stringstream ss(ptmFileLines[deviceMarker]);
ss.ignore(32, ' ');
ss.ignore(32, ' ');
int32_t gfxCore = 0;
uint32_t gfxCore = 0;
ss >> gfxCore;
iga->setGfxCore(static_cast<GFXCORE_FAMILY>(gfxCore));
}