2022-08-05 15:15:17 +00:00
|
|
|
enable f16;
|
|
|
|
|
|
|
|
fn acosh_5f49d8() {
|
2022-11-10 02:39:08 +00:00
|
|
|
var res : vec2<f16> = acosh(vec2<f16>(2.0h));
|
2022-08-05 15:15:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@vertex
|
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
|
|
acosh_5f49d8();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
|
|
|
@fragment
|
|
|
|
fn fragment_main() {
|
|
|
|
acosh_5f49d8();
|
|
|
|
}
|
|
|
|
|
|
|
|
@compute @workgroup_size(1)
|
|
|
|
fn compute_main() {
|
|
|
|
acosh_5f49d8();
|
|
|
|
}
|