r""" Returns the cumulative sum of tensor elements over given dimensions. This function follows the api from :any:`numpy.cumsum` See: https://numpy.org/doc/stable/reference/generated/numpy.cumsum.html
(self, a, axis=None)
| 361 | raise NotImplementedError() |
| 362 | |
| 363 | def cumsum(self, a, axis=None): |
| 364 | r""" |
| 365 | Returns the cumulative sum of tensor elements over given dimensions. |
| 366 | |
| 367 | This function follows the api from :any:`numpy.cumsum` |
| 368 | |
| 369 | See: https://numpy.org/doc/stable/reference/generated/numpy.cumsum.html |
| 370 | """ |
| 371 | raise NotImplementedError() |
| 372 | |
| 373 | def max(self, a, axis=None, keepdims=False): |
| 374 | r""" |
no outgoing calls