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