blob: 3ac2e2f58a49db3e8447388a30350478311018f7 [file] [log] [blame]
enable subgroups;
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec3<i32>;
fn subgroupExclusiveMul_87f23e() -> vec3<i32> {
var res : vec3<i32> = subgroupExclusiveMul(vec3<i32>(1i));
return res;
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = subgroupExclusiveMul_87f23e();
}