blob: 48ba1d9ee2e198f7563da45e4a6f05b2961d47e2 [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 main() {
let x = u;
s = x;
}