blob: 25778c7de417fe5cea969f5e6b3be62e920e0106 [file] [log] [blame]
enable f16;
fn dot_cd5a04() {
var res : f16 = dot(vec2<f16>(f16()), vec2<f16>(f16()));
}
@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();
}