blob: 3424f2e6f1efcb973e6d3c2c08606545db63a9f5 [file] [log] [blame]
[[group(0), binding(0)]] var<storage, read> in : i32;
[[group(0), binding(1)]] var<storage, read_write> out : i32;
[[stage(compute), workgroup_size(1)]]
fn main() {
out = in;
}