Get the set of global indices in this given partition.
(self, part, ctx)
| 567 | return self._partition |
| 568 | |
| 569 | def get_local_indices(self, part, ctx): |
| 570 | """Get the set of global indices in this given partition.""" |
| 571 | return self.map_to_global( |
| 572 | F.arange(0, self.local_size(part), ctx=ctx), part |
| 573 | ) |
| 574 | |
| 575 | def local_size(self, part): |
| 576 | """Get the number of rows/items assigned to the given part.""" |
no test coverage detected