blob: 83ce03cb6c033a0efd5aac844501c9a87c79daae [file] [log] [blame]
enable f16;
@group(0) @binding(0) var<storage, read_write> out : mat4x4<f16>;
@compute @workgroup_size(1)
fn f() {
var m = mat4x4<f16>();
out = mat4x4(m);
}