r""" Returns a random permutation of integers from 0 to n-1. This function follows the api from :any:`torch.randperm` See: https://docs.pytorch.org/docs/stable/generated/torch.randperm.html
(self, size, type_as=None)
| 780 | raise NotImplementedError() |
| 781 | |
| 782 | def randperm(self, size, type_as=None): |
| 783 | r""" |
| 784 | Returns a random permutation of integers from 0 to n-1. |
| 785 | |
| 786 | This function follows the api from :any:`torch.randperm` |
| 787 | |
| 788 | See: https://docs.pytorch.org/docs/stable/generated/torch.randperm.html |
| 789 | """ |
| 790 | raise NotImplementedError() |
| 791 | |
| 792 | def coo_matrix(self, data, rows, cols, shape=None, type_as=None): |
| 793 | r""" |
no outgoing calls