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