You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[WebGPU] Fall back to 256MB for maxBufferSize if needed (#17150)
By default, we request 1GB of `maxStorageBufferBindingSize`
and `maxBufferSize` when detecting a WebGPU device.
However, low-resource devices such as iOS and Android may
not be able to support 1GB.
A previous PR falls back `maxStorageBufferBindingSize` to 128MB,
the default values stated in WGSL doc, motivated by Android Chrome.
This PR falls back `maxBufferSize` to 256MB, the default value,
motivated by iOS Safari.
0 commit comments