| groupshared float w; | |
| void tint_zero_workgroup_memory(uint local_idx) { | |
| if ((local_idx < 1u)) { | |
| w = 0.0f; | |
| } | |
| GroupMemoryBarrierWithGroupSync(); | |
| } | |
| static float p = 0.0f; | |
| struct tint_symbol_1 { | |
| uint local_invocation_index : SV_GroupIndex; | |
| }; | |
| void main_inner(uint local_invocation_index) { | |
| tint_zero_workgroup_memory(local_invocation_index); | |
| float x = (p + w); | |
| p = x; | |
| } | |
| [numthreads(1, 1, 1)] | |
| void main(tint_symbol_1 tint_symbol) { | |
| main_inner(tint_symbol.local_invocation_index); | |
| return; | |
| } |