Not supported.
(self, *args, **kwargs)
| 562 | 'DistributedArray currently does not support mean.') |
| 563 | |
| 564 | def mdspan(self, *args, **kwargs): |
| 565 | """Not supported.""" |
| 566 | raise NotImplementedError( |
| 567 | 'DistributedArray currently does not support mdspan.') |
| 568 | |
| 569 | def min(self, axis=None, out=None, keepdims=False): |
| 570 | """Return the minimum along a given axis. |
no outgoing calls