blob: 373c03187c88624c1f18b1b8b554a95b190ae89e [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : mat3x2<f32>;
@compute @workgroup_size(1)
fn f() {
let t = transpose(u);
let l = length(u[1]);
let a = abs(u[0].yx.x);
}