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