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