r""" Returns a sorted copy of a tensor. This function follows the api from :any:`numpy.sort` See: https://numpy.org/doc/stable/reference/generated/numpy.sort.html
(self, a, axis=-1)
| 540 | raise NotImplementedError() |
| 541 | |
| 542 | def sort(self, a, axis=-1): |
| 543 | r""" |
| 544 | Returns a sorted copy of a tensor. |
| 545 | |
| 546 | This function follows the api from :any:`numpy.sort` |
| 547 | |
| 548 | See: https://numpy.org/doc/stable/reference/generated/numpy.sort.html |
| 549 | """ |
| 550 | raise NotImplementedError() |
| 551 | |
| 552 | def argsort(self, a, axis=None): |
| 553 | r""" |
no outgoing calls