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