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