blob: bf06df51a6e36d91e039e5a55ab09c551e2d9fe3 [file] [log] [blame]
enable f16;
fn cosh_b1b8a0() {
var res : vec3<f16> = cosh(vec3<f16>(f16()));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
cosh_b1b8a0();
return vec4<f32>();
}
@fragment
fn fragment_main() {
cosh_b1b8a0();
}
@compute @workgroup_size(1)
fn compute_main() {
cosh_b1b8a0();
}