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