blob: 9ddec834d74b300f0436719939c9fff2cf2e66e1 [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;
}