blob: 9b0b089628a7de81495c5a04dc5d2bf5a0560d50 [file] [log] [blame]
enable f16;
fn tanh_6d105a() {
var res : vec2<f16> = tanh(vec2<f16>(f16()));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
tanh_6d105a();
return vec4<f32>();
}
@fragment
fn fragment_main() {
tanh_6d105a();
}
@compute @workgroup_size(1)
fn compute_main() {
tanh_6d105a();
}