r""" Finds indices where elements should be inserted to maintain order in given tensor. This function follows the api from :any:`numpy.searchsorted` See: https://numpy.org/doc/stable/reference/generated/numpy.searchsorted.html
(self, a, v, side="left")
| 560 | raise NotImplementedError() |
| 561 | |
| 562 | def searchsorted(self, a, v, side="left"): |
| 563 | r""" |
| 564 | Finds indices where elements should be inserted to maintain order in given tensor. |
| 565 | |
| 566 | This function follows the api from :any:`numpy.searchsorted` |
| 567 | |
| 568 | See: https://numpy.org/doc/stable/reference/generated/numpy.searchsorted.html |
| 569 | """ |
| 570 | raise NotImplementedError() |
| 571 | |
| 572 | def flip(self, a, axis=None): |
| 573 | r""" |
no outgoing calls