blob: 6105a26727dd60e06d0da0f8e4360f9deaa9d4d7 [file] [log] [blame]
[[group(0), binding(0)]]
var<storage, read> in : array<f32, 4>;
[[group(0), binding(1)]]
var<storage, read_write> out : array<f32, 4>;
[[stage(compute), workgroup_size(1)]]
fn main() {
out = in;
}