Not supported.
(self, *args, **kwargs)
| 679 | 'DistributedArray currently does not support squeeze.') |
| 680 | |
| 681 | def std(self, *args, **kwargs): |
| 682 | """Not supported.""" |
| 683 | raise NotImplementedError( |
| 684 | 'DistributedArray currently does not support std.') |
| 685 | |
| 686 | def sum(self, axis=None, dtype=None, out=None, keepdims=False): |
| 687 | """Return the minimum along a given axis. |
no outgoing calls