Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple bindings with different sizes are erroneously rejected #7359

Open
andyleiserson opened this issue Mar 17, 2025 · 0 comments
Open

Multiple bindings with different sizes are erroneously rejected #7359

andyleiserson opened this issue Mar 17, 2025 · 0 comments
Labels
area: correctness We're behaving incorrectly type: bug Something isn't working

Comments

@andyleiserson
Copy link
Contributor

This failure is distilled from https://bugzilla.mozilla.org/show_bug.cgi?id=1850202. I have a standalone test case which I will submit shortly. The test case is: cargo nextest run -- gpu-test -- wgpu_gpu_test::bind_groups::multiple_bindings_with_different_sizes.

The conditions for the failure are:

  • Two bind groups are created, for two shaders, within the same compute pass.
  • The bind groups are created against the same bind group layout.
  • The bindings have different sizes.

The failure symptom is:

thread '<unnamed>' panicked at wgpu/src/backend/wgpu_core.rs:2828:26:
wgpu error: Validation Error

Caused by:
  In ComputePass::end
    In a dispatch command, indirect:false
      Buffer is bound with size 4 where the shader expects 8 in group[0] compact index 0

The binding sizes are correct for the shaders they target, so unless there is something illegal about creating these bindings against the same layout, the rejection is erroneous. Even if this case is not legal, the error message could be improved.

@andyleiserson andyleiserson added area: correctness We're behaving incorrectly type: bug Something isn't working labels Mar 17, 2025
cwfitzgerald pushed a commit that referenced this issue Mar 17, 2025
* [tests] Test case for multiple bindings with different sizes (#7359)

* Fix clippy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: correctness We're behaving incorrectly type: bug Something isn't working
Projects
Status: Todo
Development

No branches or pull requests

1 participant