Increase max workgroup size for WebGPU

- maxComputeWorkGroupInvocations updated to 256. - maxComputeWorkGroupSize updated to 256, 256, 64. Bug: dawn:796 Change-Id: I00a9f4379bbc5b7c731b7c2c6f73bdc05baee3cf Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/55249Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Commit-Queue: Corentin Wallez <cwallez@google.com> Tested-by: 's avatarCorentin Wallez <cwallez@google.com>
parent 1231b445
......@@ -485,8 +485,8 @@ const VkPhysicalDeviceLimits &PhysicalDevice::getLimits()
28, // maxFragmentCombinedOutputResources
16384, // maxComputeSharedMemorySize
{ 65535, 65535, 65535 }, // maxComputeWorkGroupCount[3]
128, // maxComputeWorkGroupInvocations
{ 128, 128, 64 }, // maxComputeWorkGroupSize[3]
256, // maxComputeWorkGroupInvocations
{ 256, 256, 64 }, // maxComputeWorkGroupSize[3]
vk::SUBPIXEL_PRECISION_BITS, // subPixelPrecisionBits
4, // subTexelPrecisionBits
4, // mipmapPrecisionBits
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment