blob: 261f1c3db707d8487b05b1951a2e6afc16493f11 [file] [log] [blame]
enable f16;
@group(0) @binding(0) var<uniform> u : mat2x4<f16>;
@group(0) @binding(1) var<storage, read_write> s : mat2x4<f16>;
@compute @workgroup_size(1)
fn f() {
s = u;
s[1] = u[0];
s[1] = u[0].ywxz;
s[0][1] = u[1][0];
}