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