See functional.split.
(self, split_size_or_sections, dim=0)
| 502 | return self.rank() |
| 503 | |
| 504 | def split(self, split_size_or_sections, dim=0): |
| 505 | ''' |
| 506 | See functional.split. |
| 507 | ''' |
| 508 | return split(self, split_size_or_sections, dim) |
| 509 | |
| 510 | def select(self, dim, index): |
| 511 | ''' |