(self, other, axis=0)
| 333 | return self.g.flatten(self, start_dim=start_dim, end_dim=end_dim) |
| 334 | |
| 335 | def concat(self, other, axis=0): |
| 336 | return self.g.concat(self, other, axis=axis) |
| 337 | |
| 338 | def cat(self, tensors, axis=0): |
| 339 | return self.g.cat([self] + tensors, axis=axis) |