blob: 3547523615b9306ef8d2a46df1b58f62e2dbb345 [file] [log] [blame]
enable f16;
fn dot_cd5a04() {
var res : f16 = dot(vec2<f16>(1.0h), vec2<f16>(1.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
dot_cd5a04();
return vec4<f32>();
}
@fragment
fn fragment_main() {
dot_cd5a04();
}
@compute @workgroup_size(1)
fn compute_main() {
dot_cd5a04();
}