r""" Returns the indices that would sort a tensor. This function follows the api from :any:`numpy.argsort` See: https://numpy.org/doc/stable/reference/generated/numpy.argsort.html
(self, a, axis=None)
| 550 | raise NotImplementedError() |
| 551 | |
| 552 | def argsort(self, a, axis=None): |
| 553 | r""" |
| 554 | Returns the indices that would sort a tensor. |
| 555 | |
| 556 | This function follows the api from :any:`numpy.argsort` |
| 557 | |
| 558 | See: https://numpy.org/doc/stable/reference/generated/numpy.argsort.html |
| 559 | """ |
| 560 | raise NotImplementedError() |
| 561 | |
| 562 | def searchsorted(self, a, v, side="left"): |
| 563 | r""" |
no outgoing calls