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