refactor: change interfaces of walker region encoder

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2025-01-17 16:26:19 +00:00
committed by Compute-Runtime-Automation
parent 118cb62b7f
commit 446f9c1964
7 changed files with 18 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021-2024 Intel Corporation
* Copyright (C) 2021-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -207,7 +207,7 @@ inline void HardwareInterface<GfxFamily>::programWalker(
timestampPacketNode->setPacketsUsed(implicitScalingArgs.partitionCount);
}
} else {
EncodeDispatchKernel<GfxFamily>::setWalkerRegionSettings(walkerCmd, device, 1, workgroupSize, maxWgCountPerTile, requiredWalkOrder != 0);
EncodeDispatchKernel<GfxFamily>::setWalkerRegionSettings(walkerCmd, device, 1, workgroupSize, threadGroupCount, maxWgCountPerTile, requiredWalkOrder != 0);
auto computeWalkerOnStream = commandStream.getSpaceForCmd<WalkerType>();
*computeWalkerOnStream = walkerCmd;
}