blob: 08826f41625d536e527690508ae4cde0d0649c40 [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;
}