blob: 1c6722d06f32a0dfffba8d6b9c7f7bdd3602ff36 [file] [log] [blame]
enable f16;
fn tanh_6d105a() {
var res : vec2<f16> = tanh(vec2<f16>(1.0h));
}
@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();
}