blob: 98ae590615e9a2193b558cbd267754aa0bc72f4e [file] [log] [blame]
// flags: --hlsl_shader_model 62
enable f16;
@group(0) @binding(0)
var<storage, read> in : vec2<f16>;
@group(0) @binding(1)
var<storage, read_write> out : vec2<f16>;
@compute @workgroup_size(1)
fn main() {
out = in;
}