refactor: change compute walker to defaultWalkerType

Related-To: NEO-10641
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2024-03-12 01:03:56 +00:00
committed by Compute-Runtime-Automation
parent add1ff4902
commit 626b3846b0
11 changed files with 271 additions and 272 deletions

View File

@@ -932,7 +932,7 @@ size_t EncodeStates<Family>::getSshHeapSize() {
template <typename Family>
void InOrderPatchCommandHelpers::PatchCmd<Family>::patchComputeWalker(uint64_t appendCounterValue) {
auto walkerCmd = reinterpret_cast<typename Family::COMPUTE_WALKER *>(cmd1);
auto walkerCmd = reinterpret_cast<typename Family::DefaultWalkerType *>(cmd1);
auto &postSync = walkerCmd->getPostSync();
postSync.setImmediateData(baseCounterValue + appendCounterValue);
}