(self, inputs)
| 32 | self.grid = build_grid(resolution) |
| 33 | |
| 34 | def forward(self, inputs): |
| 35 | device = inputs.device |
| 36 | self.grid = self.grid.to(device) |
| 37 | return inputs + self.proj(self.grid) |
| 38 | |
| 39 | |
| 40 | def spatial_broadcast(slots, resolution): |
nothing calls this directly
no outgoing calls
no test coverage detected