enable f16; @compute @workgroup_size(1) fn f() { let a = mat2x4(vec4(1.h, 2.h, 3.h, 4.h), vec4(5.h, 6.h, 7.h, 8.h)); let b = mat4x2(vec2(-1.h, -2.h), vec2(-3.h, -4.h), vec2(-5.h, -6.h), vec2(-7.h, -8.h)); let r : mat4x4 = a * b; }