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
It would be nice to add some sanity warnings for compute shaders.
To start with:
Emit a warning if shader has a constant LocalSize on x-dimension less than the current subgroup size. Otherwise each invocation in the shader will be treated as a new subgroup, which makes use of subgroup operations impossible. In more abstract sense, this is a problem in the unclear semantics of what is a LocalSize in a shader and what is client side cmd_dispatch dimension, and how these two interact together.
The text was updated successfully, but these errors were encountered:
It would be nice to add some sanity warnings for compute shaders.
To start with:
The text was updated successfully, but these errors were encountered: