blob: 80c0ae1dc726e3200b227301434ceba18b5ac3c6 [file] [log] [blame]
var<workgroup> arg_0 : atomic<i32>;
fn atomicMax_a89cc3() {
var res : i32 = atomicMax(&(arg_0), 1);
}
@compute @workgroup_size(1)
fn compute_main() {
atomicMax_a89cc3();
}