blob: 345bb00e82830bd91a581091c630804eb7adbd3c [file] [log] [blame]
enable subgroups;
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec3<u32>;
fn subgroupExclusiveMul_f039f4() -> vec3<u32> {
var res : vec3<u32> = subgroupExclusiveMul(vec3<u32>(1u));
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = subgroupExclusiveMul_f039f4();
}