(x)
| 191 | doys = doys.view(B, G, D, L).permute(3, 0, 1, 2) |
| 192 | |
| 193 | def rev_comsum(x): |
| 194 | cum_sum = torch.cumsum(x, dim=0) |
| 195 | return (x - cum_sum + cum_sum[-1:None]) |
| 196 | |
| 197 | if DEBUG: |
| 198 | dtype = torch.float32 |
nothing calls this directly
no outgoing calls
no test coverage detected