Not supported.
(self, *args, **kwargs)
| 538 | 'DistributedArray currently does not support flatten.') |
| 539 | |
| 540 | def item(self, *args, **kwargs): |
| 541 | """Not supported.""" |
| 542 | raise NotImplementedError( |
| 543 | 'DistributedArray currently does not support item.') |
| 544 | |
| 545 | def max(self, axis=None, out=None, keepdims=False): |
| 546 | """Return the maximum along a given axis. |
no outgoing calls