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