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