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