Skip to content

Commit

Permalink
remove subgroups_f16
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-baker committed Dec 12, 2024
1 parent ab78204 commit 23b6fe6
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ and limit the number of permutations needed to calculate the final result.`
const features: GPUFeatureName[] = ['subgroups' as GPUFeatureName];
if (t.params.type === 'f16') {
features.push('shader-f16');
features.push('subgroups-f16' as GPUFeatureName);
}
t.selectDeviceOrSkipTestCase(features);
})
Expand Down Expand Up @@ -186,7 +185,6 @@ g.test('data_types')
const features: GPUFeatureName[] = ['subgroups' as GPUFeatureName];
const type = kDataTypes[t.params.type];
if (type.requiresF16()) {
features.push('subgroups-f16' as GPUFeatureName);
features.push('shader-f16' as GPUFeatureName);
}
t.selectDeviceOrSkipTestCase(features);
Expand All @@ -196,7 +194,7 @@ g.test('data_types')
const type = kDataTypes[t.params.type];
let enables = `enable subgroups;\n`;
if (type.requiresF16()) {
enables += `enable f16;\nenable subgroups_f16;`;
enables += `enable f16;`;
}
const wgsl = `
${enables}
Expand Down

0 comments on commit 23b6fe6

Please sign in to comment.