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