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