2022-08-05 15:15:17 +00:00
|
|
|
enable f16;
|
|
|
|
|
|
|
|
fn acosh_f56574() {
|
2023-03-02 21:28:45 +00:00
|
|
|
var res : vec3<f16> = acosh(vec3<f16>(1.54296875h));
|
2023-03-06 18:25:08 +00:00
|
|
|
prevent_dce = res;
|
2022-08-05 15:15:17 +00:00
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec3<f16>;
|
|
|
|
|
2022-08-05 15:15:17 +00:00
|
|
|
@vertex
|
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
|
|
acosh_f56574();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
|
|
|
@fragment
|
|
|
|
fn fragment_main() {
|
|
|
|
acosh_f56574();
|
|
|
|
}
|
|
|
|
|
|
|
|
@compute @workgroup_size(1)
|
|
|
|
fn compute_main() {
|
|
|
|
acosh_f56574();
|
|
|
|
}
|