blob: 4fb568b31b1fbb766b9e6411a46318b6477a502f [file] [log] [blame]
// flags: --hlsl_shader_model 62
enable f16;
var<private> m = mat4x3<f16>(mat4x3<f16>(0.0h, 1.0h, 2.0h,
3.0h, 4.0h, 5.0h,
6.0h, 7.0h, 8.0h,
9.0h, 10.0h, 11.0h));
@group(0) @binding(0)
var<storage, read_write> out : mat4x3<f16>;
@compute @workgroup_size(1)
fn f() {
out = mat4x3<f16>(m);
}