blob: 17b5db1b5719a72caccefb8a3c81d3c88333e333 [file] [log] [blame]
enable subgroups;
enable subgroups_f16;
enable f16;
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec2<f16>;
fn subgroupInclusiveMul_ac5df5() -> vec2<f16> {
var res : vec2<f16> = subgroupInclusiveMul(vec2<f16>(1.0h));
return res;
}
@fragment
fn fragment_main() {
prevent_dce = subgroupInclusiveMul_ac5df5();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = subgroupInclusiveMul_ac5df5();
}