Skip to content

Commit

Permalink
Add back f16 enable for subgroup f16 tests
Browse files Browse the repository at this point in the history
tested locally with dawn node
  • Loading branch information
Peter McNeeley committed Dec 11, 2024
1 parent 6b420d4 commit 52a18eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/webgpu/shader/validation/parse/enable.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ g.test('enable')
const name: string = t.params.case as string;
if (name.includes('subgroups')) {
features.push('subgroups' as GPUFeatureName);
} else {
if(name.includes('f16')){
features.push('shader-f16');
}
}
else {
features.push('shader-f16');
}
t.selectDeviceOrSkipTestCase(features);
Expand Down

0 comments on commit 52a18eb

Please sign in to comment.