blob: 4850256140e3f200e46dfc713ac7f0cbb1839286 [file] [log] [blame]
// flags: --hlsl_shader_model 62
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;
}