2022-08-05 15:15:17 +00:00
|
|
|
enable f16;
|
|
|
|
|
|
|
|
fn acosh_a37dfe() {
|
2023-03-02 21:28:45 +00:00
|
|
|
var res : f16 = acosh(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 : f16;
|
|
|
|
|
2022-08-05 15:15:17 +00:00
|
|
|
@vertex
|
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
|
|
acosh_a37dfe();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
|
|
|
@fragment
|
|
|
|
fn fragment_main() {
|
|
|
|
acosh_a37dfe();
|
|
|
|
}
|
|
|
|
|
|
|
|
@compute @workgroup_size(1)
|
|
|
|
fn compute_main() {
|
|
|
|
acosh_a37dfe();
|
|
|
|
}
|