| groupshared float16_t arg_0; |
| |
| void tint_zero_workgroup_memory(uint local_idx) { |
| if ((local_idx < 1u)) { |
| arg_0 = float16_t(0.0h); |
| } |
| GroupMemoryBarrierWithGroupSync(); |
| } |
| |
| float16_t tint_workgroupUniformLoad_arg_0() { |
| GroupMemoryBarrierWithGroupSync(); |
| float16_t result = arg_0; |
| GroupMemoryBarrierWithGroupSync(); |
| return result; |
| } |
| |
| RWByteAddressBuffer prevent_dce : register(u0, space2); |
| |
| void workgroupUniformLoad_e07d08() { |
| float16_t res = tint_workgroupUniformLoad_arg_0(); |
| prevent_dce.Store<float16_t>(0u, res); |
| } |
| |
| struct tint_symbol_1 { |
| uint local_invocation_index : SV_GroupIndex; |
| }; |
| |
| void compute_main_inner(uint local_invocation_index) { |
| tint_zero_workgroup_memory(local_invocation_index); |
| workgroupUniformLoad_e07d08(); |
| } |
| |
| [numthreads(1, 1, 1)] |
| void compute_main(tint_symbol_1 tint_symbol) { |
| compute_main_inner(tint_symbol.local_invocation_index); |
| return; |
| } |