Zhaoming Jiang | 9443ceb | 2022-08-05 15:15:17 +0000 | [diff] [blame] | 1 | void round_e1bba2() { |
dan sinclair | 6cc183c | 2023-03-02 21:28:45 +0000 | [diff] [blame^] | 2 | vector<float16_t, 3> arg_0 = (float16_t(3.5h)).xxx; |
Zhaoming Jiang | 9443ceb | 2022-08-05 15:15:17 +0000 | [diff] [blame] | 3 | vector<float16_t, 3> res = round(arg_0); |
| 4 | } |
| 5 | |
| 6 | struct tint_symbol { |
| 7 | float4 value : SV_Position; |
| 8 | }; |
| 9 | |
| 10 | float4 vertex_main_inner() { |
| 11 | round_e1bba2(); |
| 12 | return (0.0f).xxxx; |
| 13 | } |
| 14 | |
| 15 | tint_symbol vertex_main() { |
| 16 | const float4 inner_result = vertex_main_inner(); |
| 17 | tint_symbol wrapper_result = (tint_symbol)0; |
| 18 | wrapper_result.value = inner_result; |
| 19 | return wrapper_result; |
| 20 | } |
| 21 | |
| 22 | void fragment_main() { |
| 23 | round_e1bba2(); |
| 24 | return; |
| 25 | } |
| 26 | |
| 27 | [numthreads(1, 1, 1)] |
| 28 | void compute_main() { |
| 29 | round_e1bba2(); |
| 30 | return; |
| 31 | } |