blob: 0f1c877cbd58f63dd5b640ce3d5e56712b009ed7 [file] [log] [blame]
enable f16;
var<private> m = mat2x2(vec2<f16>(0.0h, 1.0h), vec2<f16>(2.0h, 3.0h));
@group(0) @binding(0) var<storage, read_write> out : mat2x2<f16>;
@compute @workgroup_size(1)
fn f() {
out = m;
}