blob: 75ce82855e1835eb512d4cb9bcf21ae33013f0bd [file] [log] [blame]
// flags: --hlsl-shader-model 62
enable f16;
@compute @workgroup_size(1)
fn f() {
let a = vec3<f16>(1.h, 2.h, 3.h);
let b = 4.h;
let r : vec3<f16> = a * b;
}