(self, inputs, index, size=None)
| 24 | self.aggr = aggr |
| 25 | |
| 26 | def __call__(self, inputs, index, size=None): |
| 27 | size = tf.reduce_max(index) + 1 if size is None else size |
| 28 | out = scatter_(self.aggr, inputs, index, size) |
| 29 | return out |
nothing calls this directly
no test coverage detected