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