blob: 29041ab524c00836b24c1ea8c8343d5afec76fec [file] [log] [blame]
fn tanh_9f9fb9() {
var res : vec3<f32> = tanh(vec3<f32>(1.0f));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
tanh_9f9fb9();
return vec4<f32>();
}
@fragment
fn fragment_main() {
tanh_9f9fb9();
}
@compute @workgroup_size(1)
fn compute_main() {
tanh_9f9fb9();
}