blob: a30129e9cc444a578ccd4486c69c2499c7dfb68c [file] [log] [blame]
enable subgroups;
@group(0) @binding(0) var<storage, read_write> prevent_dce : f32;
fn subgroupInclusiveMul_2a7ec7() -> f32 {
var res : f32 = subgroupInclusiveMul(1.0f);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = subgroupInclusiveMul_2a7ec7();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = subgroupInclusiveMul_2a7ec7();
}