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
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 gfx-rs#5800.
  • Loading branch information
jimblandy committed Jun 12, 2024
1 parent 6c37052 commit a62a4b7
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 a62a4b7

Please sign in to comment.