Skip to content

Commit

Permalink
Skip compute_pass_resource_ownership on GL/AMD Radeon Pro WX 3200. (#…
Browse files Browse the repository at this point in the history
…5801)

Skip
`wgpu_test::compute_pass_ownership::compute_pass_resource_ownership`
on the GL backend on AMD Radeon Pro WX 3200, to avoid the kernel crash
described in #5800.
  • Loading branch information
jimblandy authored Jun 12, 2024
1 parent c6d954e commit 93c6fbe
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/tests/compute_pass_ownership.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@ var<storage, read_write> buffer: array<vec4f>;

#[gpu_test]
static COMPUTE_PASS_RESOURCE_OWNERSHIP: GpuTestConfiguration = GpuTestConfiguration::new()
.parameters(TestParameters::default().test_features_limits())
.parameters(
TestParameters::default()
.test_features_limits()
// https://github.com/gfx-rs/wgpu/issues/5800
.skip(wgpu_test::FailureCase::backend_adapter(
wgpu::Backends::GL,
"AMD Radeon Pro WX 3200",
)),
)
.run_async(compute_pass_resource_ownership);

async fn compute_pass_resource_ownership(ctx: TestingContext) {
Expand Down

0 comments on commit 93c6fbe

Please sign in to comment.