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