blob: 3829ce7e590164a196f14397a3938b2d89dc24c2 [file] [log] [blame]
enable subgroups;
enable subgroups_f16;
enable f16;
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec2<f16>;
fn subgroupExclusiveMul_e88d1c() -> vec2<f16> {
var res : vec2<f16> = subgroupExclusiveMul(vec2<f16>(1.0h));
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = subgroupExclusiveMul_e88d1c();
}