blob: a028eedbf671b5b7890751b3777a35b057aa82a7 [file] [log] [blame]
var<workgroup> arg_0 : atomic<u32>;
fn atomicMax_beccfc() {
var res : u32 = atomicMax(&(arg_0), 1u);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : u32;
@compute @workgroup_size(1)
fn compute_main() {
atomicMax_beccfc();
}