mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
anv: Set maxComputeSharedMemorySize to 64k
This value is supported since gen7. See also 8514c75a26 "i965: Set
compute shader shared memory max to 64k".
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
dd2dc7e707
commit
d577db293d
1 changed files with 1 additions and 1 deletions
|
|
@ -1285,7 +1285,7 @@ void anv_GetPhysicalDeviceProperties(
|
|||
.maxFragmentOutputAttachments = 8,
|
||||
.maxFragmentDualSrcAttachments = 1,
|
||||
.maxFragmentCombinedOutputResources = 8,
|
||||
.maxComputeSharedMemorySize = 32768,
|
||||
.maxComputeSharedMemorySize = 64 * 1024,
|
||||
.maxComputeWorkGroupCount = { 65535, 65535, 65535 },
|
||||
.maxComputeWorkGroupInvocations = 32 * devinfo->max_cs_threads,
|
||||
.maxComputeWorkGroupSize = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue