fix: correctly set workgroup size for kernels

Related-To: NEO-14367

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2025-03-17 12:54:52 +00:00
committed by Compute-Runtime-Automation
parent 3d6c6b4a91
commit f8ae044db9
3 changed files with 16 additions and 1 deletions

View File

@@ -1151,7 +1151,7 @@ ze_result_t KernelImp::initialize(const ze_kernel_desc_t *desc) {
return result;
}
} else {
auto result = setGroupSize(kernelDescriptor.kernelAttributes.simdSize, 1, 1);
auto result = setGroupSize(1, 1, 1);
if (result != ZE_RESULT_SUCCESS) {
return result;
}