Home
last modified time | relevance | path

Searched refs:maxWG (Results 1 – 1 of 1) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
DvktComputeZeroInitializeWorkgroupMemoryTests.cpp261 …const deUint32 maxWG = std::min(247u, (properties.limits.maxComputeWorkGroupInvocations / 13) * 13… in iterate() local
265 if (wgx < maxWG) in iterate()
267 wgy = std::min(maxWG / wgx, (properties.limits.maxComputeWorkGroupSize[1] / 13) * 13); in iterate()
269 if ((wgx * wgy) < maxWG) in iterate()
271 wgz = std::min(maxWG / wgx / wgy, (properties.limits.maxComputeWorkGroupSize[2] / 13) * 13); in iterate()
1024 const deUint32 maxWG = std::min(2048u, properties.limits.maxComputeWorkGroupInvocations); in iterate() local
1028 if (wgx < maxWG) in iterate()
1030 wgy = std::min(maxWG / wgx, properties.limits.maxComputeWorkGroupSize[1]); in iterate()
1032 if ((wgx * wgy) < maxWG) in iterate()
1034 wgz = std::min(maxWG / wgx / wgy, properties.limits.maxComputeWorkGroupSize[2]); in iterate()