mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
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:
committed by
Compute-Runtime-Automation
parent
3d6c6b4a91
commit
f8ae044db9
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user