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