blob: 8e6f03ee594f5b493dc5e6a9ca922d482e8b9c86 [file] [log] [blame]
enable f16;
@group(0) @binding(0) var<uniform> u : mat2x2<f16>;
@group(0) @binding(1) var<storage, read_write> s : mat2x2<f16>;
@compute @workgroup_size(1)
fn main() {
let x = u;
s = x;
}