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