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