blob: adc6067845b962ac310eb72a7d0d7fb334b88c7d [file] [log] [blame]
enable f16;
@group(0) @binding(0)
var<storage, read> in : array<f16, 4>;
@group(0) @binding(1)
var<storage, read_write> out : array<f16, 4>;
@compute @workgroup_size(1)
fn main() {
out = in;
}