blob: 69b786c320e48494e7a973b3bbab281d1a7fae30 [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;
}