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