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