r""" Returns a copy of the given tensor. This function follows the api from :any:`numpy.copy` See: https://numpy.org/doc/stable/reference/generated/numpy.copy.html
(self, a)
| 850 | raise NotImplementedError() |
| 851 | |
| 852 | def copy(self, a): |
| 853 | r""" |
| 854 | Returns a copy of the given tensor. |
| 855 | |
| 856 | This function follows the api from :any:`numpy.copy` |
| 857 | |
| 858 | See: https://numpy.org/doc/stable/reference/generated/numpy.copy.html |
| 859 | """ |
| 860 | raise NotImplementedError() |
| 861 | |
| 862 | def allclose(self, a, b, rtol=1e-05, atol=1e-08, equal_nan=False): |
| 863 | r""" |
no outgoing calls