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