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