mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Fix computation of workgroup sizes for large sizes (2)
Change-Id: I31bb300a2cfae2df9806ae812bd2acbc62f88191 Signed-off-by: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
46616656a6
commit
d2677bed2e
@@ -245,9 +245,9 @@ void computeWorkgroupSize2D(uint32_t maxWorkGroupSize, size_t workGroupSize[3],
|
||||
uint32_t xFactorsLen = 0;
|
||||
uint32_t yFactorsLen = 0;
|
||||
uint64_t waste;
|
||||
uint64_t localWSWaste = 0xffffffff;
|
||||
uint64_t localWSWaste = 0xffffffffffffffff;
|
||||
uint64_t euThrdsDispatched;
|
||||
uint64_t localEuThrdsDispatched = 0xffffffff;
|
||||
uint64_t localEuThrdsDispatched = 0xffffffffffffffff;
|
||||
uint64_t workGroups;
|
||||
uint32_t xDim;
|
||||
uint32_t yDim;
|
||||
|
||||
Reference in New Issue
Block a user