r""" Reverses the order of elements in a tensor along given dimensions. This function follows the api from :any:`numpy.flip` See: https://numpy.org/doc/stable/reference/generated/numpy.flip.html
(self, a, axis=None)
| 570 | raise NotImplementedError() |
| 571 | |
| 572 | def flip(self, a, axis=None): |
| 573 | r""" |
| 574 | Reverses the order of elements in a tensor along given dimensions. |
| 575 | |
| 576 | This function follows the api from :any:`numpy.flip` |
| 577 | |
| 578 | See: https://numpy.org/doc/stable/reference/generated/numpy.flip.html |
| 579 | """ |
| 580 | raise NotImplementedError() |
| 581 | |
| 582 | def clip(self, a, a_min, a_max): |
| 583 | """ |
no outgoing calls